File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3601,7 +3601,7 @@ class Parser : public CodeCompletionHandler {
3601
3601
// / keyword.
3602
3602
bool isClassCompatibleKeyword (Token Tok) const ;
3603
3603
3604
- void ParseMicrosoftRootSignatureAttributeArgs (ParsedAttributes &Attrs);
3604
+ void ParseHLSLRootSignatureAttributeArgs (ParsedAttributes &Attrs);
3605
3605
3606
3606
// /@}
3607
3607
Original file line number Diff line number Diff line change @@ -4901,7 +4901,7 @@ void Parser::ParseMicrosoftUuidAttributeArgs(ParsedAttributes &Attrs) {
4901
4901
}
4902
4902
}
4903
4903
4904
- void Parser::ParseMicrosoftRootSignatureAttributeArgs (ParsedAttributes &Attrs) {
4904
+ void Parser::ParseHLSLRootSignatureAttributeArgs (ParsedAttributes &Attrs) {
4905
4905
assert (Tok.is (tok::identifier) &&
4906
4906
" Expected an identifier to denote which MS attribute to consider" );
4907
4907
IdentifierInfo *RootSignatureIdent = Tok.getIdentifierInfo ();
@@ -5005,7 +5005,7 @@ void Parser::ParseMicrosoftAttributes(ParsedAttributes &Attrs) {
5005
5005
if (Tok.getIdentifierInfo ()->getName () == " uuid" )
5006
5006
ParseMicrosoftUuidAttributeArgs (Attrs);
5007
5007
else if (Tok.getIdentifierInfo ()->getName () == " RootSignature" )
5008
- ParseMicrosoftRootSignatureAttributeArgs (Attrs);
5008
+ ParseHLSLRootSignatureAttributeArgs (Attrs);
5009
5009
else {
5010
5010
IdentifierInfo *II = Tok.getIdentifierInfo ();
5011
5011
SourceLocation NameLoc = Tok.getLocation ();
You can’t perform that action at this time.
0 commit comments