diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-04-28 11:07:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-28 11:07:31 (GMT) |
commit | 4f903b6dd4e696ac13a3a6bf6141444ea0819c31 (patch) | |
tree | 3ff735a445e1c996462a545d7874874eb8911463 | |
parent | 423bbe6ec0823504abd26b1c06b71c09ed8b94df (diff) | |
parent | 9c8171eab959495910fe2486b0ddf05476dfa3fb (diff) | |
download | Doxygen-4f903b6dd4e696ac13a3a6bf6141444ea0819c31.zip Doxygen-4f903b6dd4e696ac13a3a6bf6141444ea0819c31.tar.gz Doxygen-4f903b6dd4e696ac13a3a6bf6141444ea0819c31.tar.bz2 |
Merge pull request #6943 from albert-github/feature/bug_cond_pre
Warning when preprocessing conditionals
-rw-r--r-- | src/pre.l | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1255,6 +1255,7 @@ QCString removeIdsAndMarkers(const char *s) result+="0L"; p++; while ((c=*p) && isId(c)) p++; + while ((c=*p) && isspace((uchar)c)) p++; if (*p=='(') // undefined function macro { p++; |