diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2017-11-09 20:47:21 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2017-11-09 20:47:21 (GMT) |
commit | d8001efd89146e04d92f5ea41ab27a7de09b6c53 (patch) | |
tree | fd83a4677508115d9752ba1453e22bfeae9b8b36 /src/scanner.l | |
parent | 81956108f2e6e97bf4dd0f1011fcae1b5c4c4408 (diff) | |
download | Doxygen-d8001efd89146e04d92f5ea41ab27a7de09b6c53.zip Doxygen-d8001efd89146e04d92f5ea41ab27a7de09b6c53.tar.gz Doxygen-d8001efd89146e04d92f5ea41ab27a7de09b6c53.tar.bz2 |
Bug 787952 - Problem parsing c++ gnu::visibility
Diffstat (limited to 'src/scanner.l')
-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 632c8a5..2639ddf 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -6574,7 +6574,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}) } <SkipComment>[^\*\n]+ -"[[" { // C++11 attribute +<*>"[[" { // C++11 attribute lastC11AttributeContext = YY_START; BEGIN( SkipC11Attribute ); } |