Skip to content

Commit bb28069

Browse files
authored
Update parse-lisp-expression.cpp
1 parent 04984c2 commit bb28069

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

C++/parse-lisp-expression.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Solution {
1515
stk.emplace_back(move(tokens), lookup);
1616
tokens = {""};
1717
} else if (c == ' ') {
18-
tokens.emplace_back("");
18+
tokens.emplace_back();
1919
} else if (c == ')') {
2020
const auto& val = evaluate(tokens, &lookup);
2121
tie(tokens, lookup) = move(stk.back());

0 commit comments

Comments
 (0)