summaryrefslogtreecommitdiffhomepage
path: root/editor/tests
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-02-28 18:29:02 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-02-28 20:13:32 +0100
commit78a3eec9be053a1f82cf2e6235bbaa4deb4a1335 (patch)
tree4539ba47695bc7b5fd974e2508067cb2fd168636 /editor/tests
parent75508e3c03f659080df7db2211fb5a80cc1afeee (diff)
switch to using unqualified calls to {move,forward,swap}
Diffstat (limited to 'editor/tests')
-rw-r--r--editor/tests/path-test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/tests/path-test.cpp b/editor/tests/path-test.cpp
index 68c7fee9..6bb89bef 100644
--- a/editor/tests/path-test.cpp
+++ b/editor/tests/path-test.cpp
@@ -161,7 +161,7 @@ void path_test::update_pre(app& a)
result = {
.from = pending.from,
.to = pending.to,
- .path = std::move(res.raw_path().vec),
+ .path = move(res.raw_path().vec),
.time = res.time(),
.cost = res.cost(),
.distance = res.distance(),