From 4afc51755c14ae38bf8d2c4e6a4a64dd2e59202a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ezgi=20=C3=87i=C3=A7ek?= Date: Wed, 14 Apr 2021 02:23:00 -0700 Subject: [PATCH] [ConfigImpact] Increase config-impact-max-callees-to-print from 3 to 5 Reviewed By: jvillard Differential Revision: D27738109 fbshipit-source-id: c22cbe00f --- infer/src/base/Config.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infer/src/base/Config.ml b/infer/src/base/Config.ml index f6f9982d2..02ef69c98 100644 --- a/infer/src/base/Config.ml +++ b/infer/src/base/Config.ml @@ -1017,7 +1017,7 @@ and config_impact_issues_tests = and config_impact_max_callees_to_print = - CLOpt.mk_int ~long:"config-impact-max-callees-to-print" ~default:3 + CLOpt.mk_int ~long:"config-impact-max-callees-to-print" ~default:5 ~in_help:InferCommand.[(Report, manual_generic); (ReportDiff, manual_generic)] ~meta:"int" "Specify the maximum number of unchecked callees to print in the config impact checker"