File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -494,6 +494,7 @@ static const keywordDesc KeywordTable [] = {
494494* FUNCTION PROTOTYPES
495495*/
496496static void createTags (const unsigned int nestLevel , statementInfo * const parent );
497+ static void parseAtMarkStyleAnnotation (statementInfo * const st );
497498
498499/*
499500* FUNCTION DEFINITIONS
@@ -2213,7 +2214,7 @@ static void processAngleBracket (void)
22132214 }
22142215}
22152216
2216- static void parseJavaAnnotation (statementInfo * const st )
2217+ static void parseAtMarkStyleAnnotation (statementInfo * const st )
22172218{
22182219 /*
22192220 * @Override
@@ -2348,7 +2349,7 @@ static int parseParens (statementInfo *const st, parenInfo *const info)
23482349 default :
23492350 if (c == '@' && isInputLanguage (Lang_java ))
23502351 {
2351- parseJavaAnnotation (st );
2352+ parseAtMarkStyleAnnotation (st );
23522353 }
23532354 else if (cppIsident1 (c ))
23542355 {
@@ -2639,7 +2640,7 @@ static void parseGeneralToken (statementInfo *const st, const int c)
26392640 }
26402641 else if (c == '@' && isInputLanguage (Lang_java ))
26412642 {
2642- parseJavaAnnotation (st );
2643+ parseAtMarkStyleAnnotation (st );
26432644 }
26442645 else if (c == STRING_SYMBOL ) {
26452646 setToken (st , TOKEN_NONE );
You can’t perform that action at this time.
0 commit comments