Fix breakage on FrontendTest by initializing new field on constructor
authorKadir Cetinkaya <kadircet@google.com>
Mon, 5 Nov 2018 10:01:34 +0000 (10:01 +0000)
committerKadir Cetinkaya <kadircet@google.com>
Mon, 5 Nov 2018 10:01:34 +0000 (10:01 +0000)
llvm-svn: 346123

clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h

index d1bbd71..2bd55e9 100644 (file)
@@ -249,12 +249,11 @@ private:
 public:
   AnalyzerOptions()
       : DisableAllChecks(false), ShowCheckerHelp(false),
-        ShowEnabledCheckerList(false), AnalyzeAll(false),
-        AnalyzerDisplayProgress(false), AnalyzeNestedBlocks(false),
-        eagerlyAssumeBinOpBifurcation(false), TrimGraph(false),
-        visualizeExplodedGraphWithGraphViz(false),
-        UnoptimizedCFG(false),
-        PrintStats(false), NoRetryExhausted(false) {}
+        ShowEnabledCheckerList(false), ShowConfigOptionsList(false),
+        AnalyzeAll(false), AnalyzerDisplayProgress(false),
+        AnalyzeNestedBlocks(false), eagerlyAssumeBinOpBifurcation(false),
+        TrimGraph(false), visualizeExplodedGraphWithGraphViz(false),
+        UnoptimizedCFG(false), PrintStats(false), NoRetryExhausted(false) {}
 
   /// Interprets an option's string value as a boolean. The "true" string is
   /// interpreted as true and the "false" string is interpreted as false.