[analyzer] Fix buildbot failures caused by a forgotten initialization
authorKristof Umann <kristof.umann@ericsson.com>
Wed, 1 May 2019 21:09:32 +0000 (21:09 +0000)
committerKristof Umann <kristof.umann@ericsson.com>
Wed, 1 May 2019 21:09:32 +0000 (21:09 +0000)
llvm-svn: 359727

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

index 63b7cd3..610b120 100644 (file)
@@ -261,11 +261,12 @@ public:
 
   AnalyzerOptions()
       : DisableAllChecks(false), ShowCheckerHelp(false),
-        ShowEnabledCheckerList(false), ShowConfigOptionsList(false),
-        AnalyzeAll(false), AnalyzerDisplayProgress(false),
-        AnalyzeNestedBlocks(false), eagerlyAssumeBinOpBifurcation(false),
-        TrimGraph(false), visualizeExplodedGraphWithGraphViz(false),
-        UnoptimizedCFG(false), PrintStats(false), NoRetryExhausted(false) {
+        ShowCheckerHelpHidden(false), ShowEnabledCheckerList(false),
+        ShowConfigOptionsList(false), AnalyzeAll(false),
+        AnalyzerDisplayProgress(false), AnalyzeNestedBlocks(false),
+        eagerlyAssumeBinOpBifurcation(false), TrimGraph(false),
+        visualizeExplodedGraphWithGraphViz(false), UnoptimizedCFG(false),
+        PrintStats(false), NoRetryExhausted(false) {
     llvm::sort(AnalyzerConfigCmdFlags);
   }