Skip to content

Commit 129ff08

Browse files
committed
Fix clang-tidy issues
1 parent 2e3f135 commit 129ff08

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

simplecpp.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3528,8 +3528,9 @@ void simplecpp::preprocess(simplecpp::TokenList &output, const simplecpp::TokenL
35283528
outputList->emplace_back(std::move(err));
35293529
}
35303530
}
3531-
else if (filedata->tokens.cfront() != nullptr)
3531+
else if (filedata->tokens.cfront() != nullptr) {
35323532
includetokenstack.push(filedata->tokens.cfront());
3533+
}
35333534
}
35343535

35353536
std::map<std::string, std::list<Location>> maybeUsedMacros;

0 commit comments

Comments
 (0)