Skip to content

Commit bc58c59

Browse files
vitalybukadaniel-grumberg
authored andcommitted
[clang] Init fields added by llvm#87357
1 parent b061d3b commit bc58c59

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

clang/include/clang/Frontend/FrontendOptions.h

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,7 @@ class InputKind {
157157

158158
public:
159159
/// The input file format.
160-
enum Format {
161-
Source,
162-
ModuleMap,
163-
Precompiled
164-
};
160+
enum Format { Source, ModuleMap, Precompiled };
165161

166162
// If we are building a header unit, what kind it is; this affects whether
167163
// we look for the file in the user or system include search paths before
@@ -460,11 +456,11 @@ class FrontendOptions {
460456
/// Enable converting setter/getter expressions to property-dot syntx.
461457
ObjCMT_PropertyDotSyntax = 0x1000,
462458

463-
ObjCMT_MigrateDecls = (ObjCMT_ReadonlyProperty | ObjCMT_ReadwriteProperty |
464-
ObjCMT_Annotation | ObjCMT_Instancetype |
465-
ObjCMT_NsMacros | ObjCMT_ProtocolConformance |
466-
ObjCMT_NsAtomicIOSOnlyProperty |
467-
ObjCMT_DesignatedInitializer),
459+
ObjCMT_MigrateDecls =
460+
(ObjCMT_ReadonlyProperty | ObjCMT_ReadwriteProperty |
461+
ObjCMT_Annotation | ObjCMT_Instancetype | ObjCMT_NsMacros |
462+
ObjCMT_ProtocolConformance | ObjCMT_NsAtomicIOSOnlyProperty |
463+
ObjCMT_DesignatedInitializer),
468464
ObjCMT_MigrateAll = (ObjCMT_Literals | ObjCMT_Subscripting |
469465
ObjCMT_MigrateDecls | ObjCMT_PropertyDotSyntax)
470466
};
@@ -599,7 +595,10 @@ class FrontendOptions {
599595
ForIncludeTreeScan(false), DisableCachedCompileJobReplay(false),
600596
MayEmitDiagnosticsAfterProcessingSourceFiles(false),
601597
WriteOutputAsCASID(false), AllowPCMWithCompilerErrors(false),
602-
ModulesShareFileManager(true), TimeTraceGranularity(500) {}
598+
ModulesShareFileManager(true), EmitSymbolGraph(false),
599+
EmitExtensionSymbolGraphs(false),
600+
EmitSymbolGraphSymbolLabelsForTesting(false),
601+
EmitPrettySymbolGraphs(false), TimeTraceGranularity(500) {}
603602

604603
/// getInputKindForExtension - Return the appropriate input kind for a file
605604
/// extension. For example, "c" would return Language::C.

0 commit comments

Comments
 (0)