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 @@ -5212,10 +5212,11 @@ void Parser::ParseMicrosoftUuidAttributeArgs(ParsedAttributes &Attrs) {
5212
5212
}
5213
5213
5214
5214
void Parser::ParseMicrosoftRootSignatureAttributeArgs (ParsedAttributes &Attrs) {
5215
- assert (Tok.is (tok::identifier) && " Not a Microsoft attribute list" );
5215
+ assert (Tok.is (tok::identifier) &&
5216
+ " Expected an identifier to denote which MS attribute to consider" );
5216
5217
IdentifierInfo *RootSignatureIdent = Tok.getIdentifierInfo ();
5217
5218
assert (RootSignatureIdent->getName () == " RootSignature" &&
5218
- " Not a Microsoft attribute list " );
5219
+ " Expected RootSignature identifier for root signature attribute " );
5219
5220
5220
5221
SourceLocation RootSignatureLoc = Tok.getLocation ();
5221
5222
ConsumeToken ();
You can’t perform that action at this time.
0 commit comments