reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Format/Format.cpp
 2495   if (LexingStd == FormatStyle::LS_Auto)
 2496     LexingStd = FormatStyle::LS_Latest;
 2497   if (LexingStd == FormatStyle::LS_Latest)
 2498     LexingStd = FormatStyle::LS_Cpp20;
 2500   LangOpts.CPlusPlus11 = LexingStd >= FormatStyle::LS_Cpp11;
 2501   LangOpts.CPlusPlus14 = LexingStd >= FormatStyle::LS_Cpp14;
 2502   LangOpts.CPlusPlus17 = LexingStd >= FormatStyle::LS_Cpp17;
 2503   LangOpts.CPlusPlus2a = LexingStd >= FormatStyle::LS_Cpp20;