From 16950edcd4704c322d39a29f212b116497e70daa Mon Sep 17 00:00:00 2001 From: Kadir Cetinkaya Date: Mon, 5 Nov 2018 10:01:34 +0000 Subject: [PATCH] Fix breakage on FrontendTest by initializing new field on constructor llvm-svn: 346123 --- .../clang/StaticAnalyzer/Core/AnalyzerOptions.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h b/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h index d1bbd71bb5a7..2bd55e9ceb56 100644 --- a/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h +++ b/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h @@ -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.