Fix compilation errors on clang.

This commit is contained in:
Tarek Yasser
2023-10-10 03:54:33 +03:00
parent 636e24003d
commit 047fd86757
4 changed files with 9 additions and 7 deletions
+2 -2
View File
@@ -183,8 +183,8 @@ TEST_CASE("Testing adding and cutting existing branches and leaves")
CHECK(leaf.get() != nullptr);
oakSeeds = oak.getUpdateSeedList();
maple.addBranchAt("/", move(branch));
maple.addLeafAt("/", move(leaf));
maple.addBranchAt("/", std::move(branch));
maple.addLeafAt("/", std::move(leaf));
CHECK(maple == beech);
CHECK(oak != beech);