We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
std::vector
std::stack
simplecpp::TokenList::combineOperators()
1 parent 3c2a660 commit 3ef1187Copy full SHA for 3ef1187
1 file changed
simplecpp.cpp
@@ -1031,7 +1031,7 @@ static bool isAlternativeAndBitandBitor(const simplecpp::Token* tok)
1031
1032
void simplecpp::TokenList::combineOperators()
1033
{
1034
- std::stack<bool> executableScope;
+ std::stack<bool, std::vector<bool>> executableScope;
1035
executableScope.push(false);
1036
for (Token *tok = front(); tok; tok = tok->next) {
1037
if (tok->op == '{') {
0 commit comments