diff options
Diffstat (limited to 'source/core/StarShellParser.cpp')
-rw-r--r-- | source/core/StarShellParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/StarShellParser.cpp b/source/core/StarShellParser.cpp index 31a927e..0551281 100644 --- a/source/core/StarShellParser.cpp +++ b/source/core/StarShellParser.cpp @@ -21,7 +21,7 @@ StringList ShellParser::tokenizeToStringList(String const& command) { StringList res; for (auto token : tokenize(command)) { if (token.type == TokenType::Word) { - res.append(move(token.token)); + res.append(std::move(token.token)); } } |