[clang] clang: Relax LangOpts checks when lexing quoted numbers during preprocessing (PR #95798)
via cfe-commits
cfe-commits at lists.llvm.org
Sat Jul 6 06:55:53 PDT 2024
================
@@ -2068,7 +2068,8 @@ bool Lexer::LexNumericConstant(Token &Result, const char *CurPtr) {
}
// If we have a digit separator, continue.
- if (C == '\'' && (LangOpts.CPlusPlus14 || LangOpts.C23)) {
+ if (C == '\'' &&
+ (LangOpts.CPlusPlus14 || LangOpts.C23 || ParsingPreprocessorDirective)) {
----------------
cor3ntin wrote:
Can we introduce a `ScanningDependencies` flag somewhere (in `LangOpts`) ? that seems to covber the feedback in the previous PR and would let us handle future such cases
https://github.com/llvm/llvm-project/pull/95798
More information about the cfe-commits
mailing list