File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -5314,10 +5314,11 @@ void Parser::ParseMicrosoftUuidAttributeArgs(ParsedAttributes &Attrs) {
5314
5314
}
5315
5315
5316
5316
void Parser::ParseMicrosoftRootSignatureAttributeArgs (ParsedAttributes &Attrs) {
5317
- assert (Tok.is (tok::identifier) && " Not a Microsoft attribute list" );
5317
+ assert (Tok.is (tok::identifier) &&
5318
+ " Expected an identifier to denote which MS attribute to consider" );
5318
5319
IdentifierInfo *RootSignatureIdent = Tok.getIdentifierInfo ();
5319
5320
assert (RootSignatureIdent->getName () == " RootSignature" &&
5320
- " Not a Microsoft attribute list " );
5321
+ " Expected RootSignature identifier for root signature attribute " );
5321
5322
5322
5323
SourceLocation RootSignatureLoc = Tok.getLocation ();
5323
5324
ConsumeToken ();
You can’t perform that action at this time.
0 commit comments