summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/scanner.l3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/scanner.l b/src/scanner.l
index 14bf3fc..fe8716e 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -2051,6 +2051,9 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
BEGIN( DocBlock );
}
}
+<UsingAlias>">>" {
+ previous->args+="> >"; // see bug769552
+ }
<UsingAlias>. {
previous->args+=yytext;
}