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 d42f270 commit d809806Copy full SHA for d809806
clang/lib/Parse/ParseDeclCXX.cpp
@@ -5365,7 +5365,8 @@ void Parser::ParseMicrosoftRootSignatureAttributeArgs(ParsedAttributes &Attrs) {
5365
// then parse the root signature string and construct the in-memory elements
5366
if (!Actions.LookupQualifiedName(R, Actions.CurContext)) {
5367
SourceLocation SignatureLoc =
5368
- StrLiteral.value()->getExprLoc().getLocWithOffset(1); // offset 1 for '"'
+ StrLiteral.value()->getExprLoc().getLocWithOffset(
5369
+ 1); // offset 1 for '"'
5370
// Invoke the root signature parser to construct the in-memory constructs
5371
hlsl::RootSignatureLexer Lexer(Signature, SignatureLoc);
5372
SmallVector<llvm::hlsl::rootsig::RootElement> Elements;
0 commit comments