Skip to content

Commit f88ba6e

Browse files
Update clang/lib/Lex/Lexer.cpp
Co-authored-by: Erich Keane <[email protected]>
1 parent 2d65e6a commit f88ba6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Lex/Lexer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4348,7 +4348,7 @@ bool Lexer::LexTokenInternal(Token &Result, bool TokAtPhysicalStartOfLine) {
43484348
if (Char == '=') {
43494349
CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
43504350
Kind = tok::caretequal;
4351-
} else if (LangOpts.Reflection && LangOpts.CPlusPlus26 && Char == '^') {
4351+
} else if (LangOpts.Reflection && Char == '^') {
43524352
CurPtr = ConsumeChar(CurPtr, SizeTmp, Result);
43534353
Kind = tok::caretcaret;
43544354
} else {

0 commit comments

Comments
 (0)