aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Format/FormatToken.cpp
diff options
context:
space:
mode:
authorOwen Pan <owenpiano@gmail.com>2025-04-05 13:35:45 -0700
committerGitHub <noreply@github.com>2025-04-05 13:35:45 -0700
commitd71ee7d23048ca64d14a7536927a006867cea39a (patch)
tree4c8f7103ec394b3406bca8d818250fcb7e4115ee /clang/lib/Format/FormatToken.cpp
parentb1cd3cb3f42881a84ebc3da1dfae59637281d73c (diff)
downloadllvm-d71ee7d23048ca64d14a7536927a006867cea39a.zip
llvm-d71ee7d23048ca64d14a7536927a006867cea39a.tar.gz
llvm-d71ee7d23048ca64d14a7536927a006867cea39a.tar.bz2
[clang-format] Set C11 instead of C17 for LK_C (#134472)
Fix #134453
Diffstat (limited to 'clang/lib/Format/FormatToken.cpp')
-rw-r--r--clang/lib/Format/FormatToken.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Format/FormatToken.cpp b/clang/lib/Format/FormatToken.cpp
index 7752139..1d49d78 100644
--- a/clang/lib/Format/FormatToken.cpp
+++ b/clang/lib/Format/FormatToken.cpp
@@ -44,7 +44,7 @@ static SmallVector<StringRef> CppNonKeywordTypes = {
bool FormatToken::isTypeName(const LangOptions &LangOpts) const {
if (is(TT_TypeName) || Tok.isSimpleTypeSpecifier(LangOpts))
return true;
- return (LangOpts.CXXOperatorNames || LangOpts.C17) && is(tok::identifier) &&
+ return (LangOpts.CXXOperatorNames || LangOpts.C11) && is(tok::identifier) &&
std::binary_search(CppNonKeywordTypes.begin(),
CppNonKeywordTypes.end(), TokenText);
}