Skip to content

Commit 23bbf40

Browse files
committed
elaboratedTypeSpecifier
1 parent 3a5167e commit 23bbf40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cxx-squid/src/main/java/org/sonar/cxx/parser/CxxGrammarImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1118,7 +1118,7 @@ private static void declarations(LexerfulGrammarBuilder b) {
11181118
b.sequence(b.optional(attributeSpecifierSeq), b.optional(nestedNameSpecifier), IDENTIFIER) // C++
11191119
)
11201120
),
1121-
b.sequence(b.optional(cliAttributes), CxxKeyword.ENUM, b.optional(nestedNameSpecifier), IDENTIFIER) // C++
1121+
b.sequence(CxxKeyword.ENUM, b.optional(nestedNameSpecifier), IDENTIFIER) // C++
11221122
)
11231123
);
11241124

0 commit comments

Comments
 (0)