summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2017-12-25 13:42:41 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2017-12-25 13:42:41 (GMT)
commit7b43be09e513ea6f86f9ca53ce05c94d63eada4c (patch)
tree4f8db9a005e12bbc8c8cba1598d73f7aaac7257c
parent2fe7bc7f1df9a2483355b0743b5e0455aaccc969 (diff)
downloadDoxygen-7b43be09e513ea6f86f9ca53ce05c94d63eada4c.zip
Doxygen-7b43be09e513ea6f86f9ca53ce05c94d63eada4c.tar.gz
Doxygen-7b43be09e513ea6f86f9ca53ce05c94d63eada4c.tar.bz2
Bug 790320 - C++ parameter from lambda not recognized
-rw-r--r--src/defargs.l8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/defargs.l b/src/defargs.l
index a55ad27..7f1e1bb 100644
--- a/src/defargs.l
+++ b/src/defargs.l
@@ -256,6 +256,14 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
REJECT;
}
}
+<CopyArgSharp>">>)" { // combined token (see bug 790320)
+ *g_copyArgValue += yytext;
+ if (g_argSharpCount>0) g_argSharpCount--;
+ else BEGIN( g_readArgContext );
+ if (g_argSharpCount>0) g_argSharpCount--;
+ else BEGIN( g_readArgContext );
+ g_argRoundCount--;
+ }
<CopyArgSharp>">>" {
if (g_argRoundCount>0)
{