diff options
Diffstat (limited to 'tools/preproc/c_file.cpp')
-rw-r--r-- | tools/preproc/c_file.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/preproc/c_file.cpp b/tools/preproc/c_file.cpp index 5bfdee086..24b3453e8 100644 --- a/tools/preproc/c_file.cpp +++ b/tools/preproc/c_file.cpp @@ -139,6 +139,7 @@ bool CFile::ConsumeNewline() { m_pos += 2; m_lineNum++; + std::putchar('\n'); return true; } @@ -146,6 +147,7 @@ bool CFile::ConsumeNewline() { m_pos++; m_lineNum++; + std::putchar('\n'); return true; } |