summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-09-23 18:01:07 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-09-23 18:01:07 (GMT)
commite5b3dbe7a5f41c221bf2745379972d67b408f09b (patch)
treec27b8f8fafdfa417a42ef3d3226b479ac99b7da7
parente92edc49d3cdaf3f484d10f66d9cc17f2c53fc24 (diff)
parent7c257bb57562b015b094f109851d914ef232ae2a (diff)
downloadDoxygen-e5b3dbe7a5f41c221bf2745379972d67b408f09b.zip
Doxygen-e5b3dbe7a5f41c221bf2745379972d67b408f09b.tar.gz
Doxygen-e5b3dbe7a5f41c221bf2745379972d67b408f09b.tar.bz2
Merge pull request #231 from hansonw/master
Fix bug with C++11 static_assert
-rw-r--r--src/scanner.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scanner.l b/src/scanner.l
index f70d7d9..716dc6a 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -2444,7 +2444,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
}
<StaticAssert>"(" {
lastSkipRoundContext = FindMembers;
- roundCount=1;
+ roundCount=0;
BEGIN(SkipRound);
}
<StaticAssert>{BN}+ { lineCount(); }