From 5310b617fef1d70bb55b70f25ac6ce71adae8e16 Mon Sep 17 00:00:00 2001 From: Andrzej Kotulski Date: Wed, 7 Dec 2016 05:04:33 -0800 Subject: [PATCH] [c++] turn on c++ analysis by default Summary: Enabling `--cxx` flag makes C++ analysis much better. It's time to turn it on by default Reviewed By: dulmarod, jvillard Differential Revision: D4285327 fbshipit-source-id: 261359a --- infer/src/base/Config.ml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/infer/src/base/Config.ml b/infer/src/base/Config.ml index 7c563d8ac..870b32402 100644 --- a/infer/src/base/Config.ml +++ b/infer/src/base/Config.ml @@ -739,8 +739,9 @@ and copy_propagation = and cxx_experimental = CLOpt.mk_bool ~deprecated:["cxx-experimental"] ~long:"cxx" + ~default:true ~exes:CLOpt.[Clang] - "Analyze C++ methods, still experimental" + "Analyze C++ methods" and ( developer_mode,