summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2018-06-10 08:51:40 (GMT)
committerGitHub <noreply@github.com>2018-06-10 08:51:40 (GMT)
commit0382d318e46d3cb5e8a706d2a137bfa1a36ece6b (patch)
tree7425d445579022f55bc2b1af2958bd5e5082ab85
parenta2b7286357dfdd9e30516977144c8ca3cf09decd (diff)
parentb33c0e0274ee25b1a414a79c13521ef8defecbda (diff)
downloadDoxygen-0382d318e46d3cb5e8a706d2a137bfa1a36ece6b.zip
Doxygen-0382d318e46d3cb5e8a706d2a137bfa1a36ece6b.tar.gz
Doxygen-0382d318e46d3cb5e8a706d2a137bfa1a36ece6b.tar.bz2
Merge pull request #724 from albert-github/feature/bug_796094
Bug 796094 - Backslashes in default values confuse the parser (and cause params to be ignored)
-rw-r--r--src/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index ff0d0c6..352cb87 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -1781,7 +1781,7 @@ QCString removeRedundantWhiteSpace(const QCString &s)
pc = c;
i++;
c = src[i];
- *dst+=c;
+ *dst++=c;
}
else if (c=='"')
{