mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-27 18:43:48 +00:00
clang-tidy complained about std::moves
This commit is contained in:
parent
6237703140
commit
bab75a3a46
6 changed files with 24 additions and 24 deletions
|
|
@ -17,7 +17,7 @@ namespace Con
|
|||
EvalResult(ConsoleValue&& pValue)
|
||||
{
|
||||
valid = true;
|
||||
value = (ConsoleValue&&)pValue;
|
||||
value = std::move(pValue);
|
||||
}
|
||||
|
||||
EvalResult(String errorMessage)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue