Skip to content

Commit 1c67298

Browse files
committed
fixed readability-redundant-parentheses clang-tidy warnings
1 parent ec92c2f commit 1c67298

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
@@ -798,7 +798,7 @@ void simplecpp::TokenList::readfile(Stream &stream, const std::string &filename,
798798
if (ch == '\\') {
799799
TokenString tmp;
800800
char tmp_ch = ch;
801-
while ((stream.good()) && (tmp_ch == '\\' || tmp_ch == ' ' || tmp_ch == '\t')) {
801+
while (stream.good() && (tmp_ch == '\\' || tmp_ch == ' ' || tmp_ch == '\t')) {
802802
tmp += tmp_ch;
803803
tmp_ch = stream.readChar();
804804
}

0 commit comments

Comments
 (0)