Skip to content

Commit f92ab66

Browse files
committed
Update expression-add-operators.cpp
1 parent e036a2d commit f92ab66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

C++/expression-add-operators.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Solution {
2626
const int& operand1, const int& operand2,
2727
vector<string> *expr, vector<string> *result) {
2828
if (pos == num.length() && operand1 + operand2 == target) {
29-
result->emplace_back(move(join(*expr)));
29+
result->emplace_back(join(*expr));
3030
} else {
3131
int val = 0;
3232
string val_str;

0 commit comments

Comments
 (0)