We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 926a4bb commit adfe7b5Copy full SHA for adfe7b5
clang/lib/Parse/ParseDeclCXX.cpp
@@ -5263,7 +5263,8 @@ void Parser::ParseMicrosoftRootSignatureAttributeArgs(ParsedAttributes &Attrs) {
5263
// then parse the root signature string and construct the in-memory elements
5264
if (!Actions.LookupQualifiedName(R, Actions.CurContext)) {
5265
SourceLocation SignatureLoc =
5266
- StrLiteral.value()->getExprLoc().getLocWithOffset(1); // offset 1 for '"'
+ StrLiteral.value()->getExprLoc().getLocWithOffset(
5267
+ 1); // offset 1 for '"'
5268
// Invoke the root signature parser to construct the in-memory constructs
5269
hlsl::RootSignatureLexer Lexer(Signature, SignatureLoc);
5270
SmallVector<llvm::hlsl::rootsig::RootElement> Elements;
0 commit comments