Home
last modified time | relevance | path

Searched refs:LexingStd (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp4052 auto LexingStd = Style.Standard; in getFormattingLangOpts() local
4053 if (LexingStd == FormatStyle::LS_Auto || LexingStd == FormatStyle::LS_Latest) in getFormattingLangOpts()
4054 LexingStd = FormatStyle::LS_Cpp20; in getFormattingLangOpts()
4056 const bool SinceCpp11 = LexingStd >= FormatStyle::LS_Cpp11; in getFormattingLangOpts()
4057 const bool SinceCpp20 = LexingStd >= FormatStyle::LS_Cpp20; in getFormattingLangOpts()
4068 LangOpts.CPlusPlus14 = LexingStd >= FormatStyle::LS_Cpp14; in getFormattingLangOpts()
4069 LangOpts.CPlusPlus17 = LexingStd >= FormatStyle::LS_Cpp17; in getFormattingLangOpts()