From b33c0e0274ee25b1a414a79c13521ef8defecbda Mon Sep 17 00:00:00 2001 From: albert-github Date: Mon, 14 May 2018 14:49:04 +0200 Subject: Bug 796094 - Backslashes in default values confuse the parser (and cause params to be ignored) Corrected assignment / counting. --- src/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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=='"') { -- cgit v0.12