Avoid unqualified call to `std::move`

This commit is contained in:
Martchus 2023-01-28 20:20:30 +01:00
parent 53ce099bf9
commit 3a4d71ef5c
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ void ArgumentParserTests::testArgument()
#endif
ArgumentOccurrence occurrence(0, vector<Argument *>(), nullptr);
occurrence.values.emplace_back("bar");
argument.m_occurrences.emplace_back(move(occurrence));
argument.m_occurrences.emplace_back(std::move(occurrence));
CPPUNIT_ASSERT_EQUAL("bar"s, string(argument.firstValue()));
}