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

References

tools/clang/lib/Format/Format.cpp
 2499   LangOpts.CPlusPlus = 1;
 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;
 2505   LangOpts.LineComment = 1;
 2507   LangOpts.CXXOperatorNames = AlternativeOperators ? 1 : 0;
 2508   LangOpts.Bool = 1;
 2509   LangOpts.ObjC = 1;
 2510   LangOpts.MicrosoftExt = 1;    // To get kw___try, kw___finally.
 2511   LangOpts.DeclSpecKeyword = 1; // To get __declspec.
 2512   return LangOpts;