diff options
author | albert-github <albert.tests@gmail.com> | 2018-05-14 12:49:04 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-05-14 12:49:04 (GMT) |
commit | b33c0e0274ee25b1a414a79c13521ef8defecbda (patch) | |
tree | 6ffffe3ebf3de24153b9be17be9aeb78f0d93975 /src | |
parent | df0d9c3df44dbce633c38e99d33be4de06706f7b (diff) | |
download | Doxygen-b33c0e0274ee25b1a414a79c13521ef8defecbda.zip Doxygen-b33c0e0274ee25b1a414a79c13521ef8defecbda.tar.gz Doxygen-b33c0e0274ee25b1a414a79c13521ef8defecbda.tar.bz2 |
Bug 796094 - Backslashes in default values confuse the parser (and cause params to be ignored)
Corrected assignment / counting.
Diffstat (limited to 'src')
-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 9762892..330e061 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1782,7 +1782,7 @@ QCString removeRedundantWhiteSpace(const QCString &s) pc = c; i++; c = src[i]; - *dst+=c; + *dst++=c; } else if (c=='"') { |