summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2017-11-09 20:47:21 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2017-11-09 20:47:21 (GMT)
commitd8001efd89146e04d92f5ea41ab27a7de09b6c53 (patch)
treefd83a4677508115d9752ba1453e22bfeae9b8b36 /src
parent81956108f2e6e97bf4dd0f1011fcae1b5c4c4408 (diff)
downloadDoxygen-d8001efd89146e04d92f5ea41ab27a7de09b6c53.zip
Doxygen-d8001efd89146e04d92f5ea41ab27a7de09b6c53.tar.gz
Doxygen-d8001efd89146e04d92f5ea41ab27a7de09b6c53.tar.bz2
Bug 787952 - Problem parsing c++ gnu::visibility
Diffstat (limited to 'src')
-rw-r--r--src/scanner.l2
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 );
}