Skip to content

Commit a33bfac

Browse files
committed
iterate
1 parent 469a1a7 commit a33bfac

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tools/clang/lib/Parse/ParseDecl.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4193,9 +4193,9 @@ void Parser::ParseDeclarationSpecifiers(DeclSpec &DS,
41934193
getLangOpts());
41944194
break;
41954195
case tok::kw_volatile:
4196-
if (getLangOpts().HLSL) {
4197-
goto HLSLReservedKeyword;
4198-
} // HLSL Change - volatile is reserved for HLSL
4196+
// HLSL Change - volatile is reserved for HLSL
4197+
if (getLangOpts().HLSL) goto HLSLReservedKeyword;
4198+
// HLSL Change Ends
41994199
isInvalid = DS.SetTypeQual(DeclSpec::TQ_volatile, Loc, PrevSpec, DiagID,
42004200
getLangOpts());
42014201
break;

0 commit comments

Comments
 (0)