File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ bool isTokenIdentifierOrKeyword(Parser &P, Token Tok) {
183
183
// / Return 'true' if the special token was matched, false if no special token,
184
184
// / or an invalid special token was found.
185
185
template <typename DirOrClauseTy>
186
- bool TryParseAndConsumeSpecialTokenKind (Parser &P, OpenACCSpecialTokenKind Kind,
186
+ bool tryParseAndConsumeSpecialTokenKind (Parser &P, OpenACCSpecialTokenKind Kind,
187
187
DirOrClauseTy DirOrClause) {
188
188
Token IdentTok = P.getCurToken ();
189
189
// If this is an identifier-like thing followed by ':', it is one of the
@@ -713,7 +713,7 @@ void Parser::ParseOpenACCCacheVarList() {
713
713
// The VarList is an optional `readonly:` followed by a list of a variable
714
714
// specifications. Consume something that looks like a 'tag', and diagnose if
715
715
// it isn't 'readonly'.
716
- if (TryParseAndConsumeSpecialTokenKind (*this ,
716
+ if (tryParseAndConsumeSpecialTokenKind (*this ,
717
717
OpenACCSpecialTokenKind::ReadOnly,
718
718
OpenACCDirectiveKind::Cache)) {
719
719
// FIXME: Record that this is a 'readonly' so that we can use that during
You can’t perform that action at this time.
0 commit comments