Skip to content

Commit 945bbd5

Browse files
committed
fixed readability-redundant-parentheses clang-tidy warnings
1 parent c6d88e1 commit 945bbd5

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
@@ -823,7 +823,7 @@ void simplecpp::TokenList::readfile(Stream &stream, const std::string &filename,
823823
if (ch == '\\') {
824824
TokenString tmp;
825825
char tmp_ch = ch;
826-
while ((stream.good()) && (tmp_ch == '\\' || tmp_ch == ' ' || tmp_ch == '\t')) {
826+
while (stream.good() && (tmp_ch == '\\' || tmp_ch == ' ' || tmp_ch == '\t')) {
827827
tmp += tmp_ch;
828828
tmp_ch = stream.readChar();
829829
}

0 commit comments

Comments
 (0)