diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-08-15 13:04:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-15 13:04:10 (GMT) |
commit | db3d48e804442901333e6c89e64dacbb9b6c39e7 (patch) | |
tree | 897ab0f0fd181a005014ddffdd707e1a7928dd4c /src/util.cpp | |
parent | c4564a6af5e58769d09491eaac3d46f4638784be (diff) | |
parent | eb3cb7b93be84b0fdb43ade81616f5523b33cd04 (diff) | |
download | Doxygen-db3d48e804442901333e6c89e64dacbb9b6c39e7.zip Doxygen-db3d48e804442901333e6c89e64dacbb9b6c39e7.tar.gz Doxygen-db3d48e804442901333e6c89e64dacbb9b6c39e7.tar.bz2 |
Merge pull request #7960 from albert-github/feature/bug_count
Improvement of line count for e.g. warnings
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index 2c7af7b..fb7a8dc 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -6580,7 +6580,7 @@ QCString stripLeadingAndTrailingEmptyLines(const QCString &s,int &docLine) while ((c=*p)) { if (c==' ' || c=='\t' || c=='\r') i++,p++; - else if (c=='\\' && qstrncmp(p,"\\ilinebr",8)==0) i+=8,li=i,docLine++,p+=8; + else if (c=='\\' && qstrncmp(p,"\\ilinebr",8)==0) i+=8,li=i,p+=8; else if (c=='\n') i++,li=i,docLine++,p++; else break; } |