Skip to content

Commit

Permalink
slang-tidy fixes typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Sustrak committed Jun 23, 2023
1 parent 4804fd8 commit d94bb32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/tidy/src/TidyConfigParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ char TidyConfigParser::nextChar() {
return 0;
col++;
#if defined(_WIN32)
if (c == '\r' && stream.peek() == '\n') {
if (c == '\r' && fileStream.peek() == '\n') {
fileStream >> std::noskipws >> c;
col = 0;
line++;
Expand Down

0 comments on commit d94bb32

Please sign in to comment.