Skip to content

Commit c2c9dc3

Browse files
committed
Fix regex logic in scanner.l
1 parent 8f60e93 commit c2c9dc3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/scanner.l

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1968,7 +1968,7 @@ NONLopt [^\n]*
19681968
initEntry(yyscanner);
19691969
BEGIN(Using);
19701970
}
1971-
<FindMembers>"using"{BN}+/("::"{ID}("::"{ID}*))? {
1971+
<FindMembers>"using"{BN}+/("::"{ID}("::"{ID})*)? {
19721972
if (yyextra->insideJava) REJECT;
19731973
yyextra->current->startLine=yyextra->yyLineNr;
19741974
yyextra->current->startColumn = yyextra->yyColNr;

0 commit comments

Comments
 (0)