clang-tidy complained about std::moves

This commit is contained in:
marauder2k7 2025-05-07 17:04:55 +01:00
parent 6237703140
commit bab75a3a46
6 changed files with 24 additions and 24 deletions

View file

@ -17,7 +17,7 @@ namespace Con
EvalResult(ConsoleValue&& pValue)
{
valid = true;
value = (ConsoleValue&&)pValue;
value = std::move(pValue);
}
EvalResult(String errorMessage)