We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04984c2 commit bb28069Copy full SHA for bb28069
C++/parse-lisp-expression.cpp
@@ -15,7 +15,7 @@ class Solution {
15
stk.emplace_back(move(tokens), lookup);
16
tokens = {""};
17
} else if (c == ' ') {
18
- tokens.emplace_back("");
+ tokens.emplace_back();
19
} else if (c == ')') {
20
const auto& val = evaluate(tokens, &lookup);
21
tie(tokens, lookup) = move(stk.back());
0 commit comments