Skip to content

Commit f5d6d1e

Browse files
committed
remove redundant std::move inside TelegramParser::tryExtractJsonValueStr
1 parent 3e0a784 commit f5d6d1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpr/src/server/telegramparser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ bool TelegramParser::tryExtractJsonValueStr(const std::string& jsonString, const
3232
}
3333

3434
// Extract the value substring
35-
result = std::move(jsonString.substr(valuePosStart + 1, (valueEnd - valuePosStart) - 1));
35+
result = jsonString.substr(valuePosStart + 1, (valueEnd - valuePosStart) - 1);
3636
return true;
3737
}
3838

0 commit comments

Comments
 (0)