Skip to content

Commit ff0791f

Browse files
committed
self-review: fix typo
1 parent d5fbc7c commit ff0791f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Parse/ParseHLSLRootSignature.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ std::optional<float> RootSignatureParser::parseFloatParam() {
747747
}
748748

749749
if (Negated && tryConsumeExpectedToken(TokenKind::int_literal)) {
750-
std::optional<int32_t> = handleIntLiteral(Negated);
750+
std::optional<int32_t> Int = handleIntLiteral(Negated);
751751
if (!Int.has_value())
752752
return std::nullopt;
753753
return (float)Int.value();

0 commit comments

Comments
 (0)