Skip to content

Commit 1769a10

Browse files
committed
fix #657
1 parent 3fae691 commit 1769a10

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

simplecpp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ void simplecpp::TokenList::combineOperators()
10251025
continue;
10261026
}
10271027
const Token *prev = tok->previous;
1028-
while (prev && prev->isOneOf(";{}()"))
1028+
while (prev && prev->isOneOf(";{}("))
10291029
prev = prev->previous;
10301030
executableScope.push(prev && prev->op == ')');
10311031
continue;

0 commit comments

Comments
 (0)