diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-09-23 18:01:07 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-09-23 18:01:07 (GMT) |
commit | e5b3dbe7a5f41c221bf2745379972d67b408f09b (patch) | |
tree | c27b8f8fafdfa417a42ef3d3226b479ac99b7da7 | |
parent | e92edc49d3cdaf3f484d10f66d9cc17f2c53fc24 (diff) | |
parent | 7c257bb57562b015b094f109851d914ef232ae2a (diff) | |
download | Doxygen-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.l | 2 |
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(); } |