File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -57,23 +57,23 @@ class DeclDirectiveListParserHelper final {
5757} // namespace
5858
5959static OpenMPDirectiveKind parseOpenMPDirectiveKind (Parser &P) {
60- static const DirectiveNameParser DNP ;
60+ static const DirectiveNameParser DirParser ;
6161
62- const DirectiveNameParser::State *S = DNP .initial ();
62+ const DirectiveNameParser::State *S = DirParser .initial ();
6363
6464 Token Tok = P.getCurToken ();
6565 if (Tok.isAnnotation ())
6666 return OMPD_unknown;
6767
68- S = DNP .consume (S, P.getPreprocessor ().getSpelling (Tok));
68+ S = DirParser .consume (S, P.getPreprocessor ().getSpelling (Tok));
6969 if (S == nullptr )
7070 return OMPD_unknown;
7171
7272 while (!Tok.isAnnotation ()) {
7373 OpenMPDirectiveKind DKind = S->Value ;
7474 Tok = P.getPreprocessor ().LookAhead (0 );
7575 if (!Tok.isAnnotation ()) {
76- S = DNP .consume (S, P.getPreprocessor ().getSpelling (Tok));
76+ S = DirParser .consume (S, P.getPreprocessor ().getSpelling (Tok));
7777 if (S == nullptr )
7878 return DKind;
7979 P.ConsumeToken ();
You can’t perform that action at this time.
0 commit comments