summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-05-14 12:49:04 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-05-14 12:49:04 (GMT)
commitb33c0e0274ee25b1a414a79c13521ef8defecbda (patch)
tree6ffffe3ebf3de24153b9be17be9aeb78f0d93975 /src
parentdf0d9c3df44dbce633c38e99d33be4de06706f7b (diff)
downloadDoxygen-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.cpp2
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=='"')
{