From ed07f007296c034a1e618f3e9d3a31425c4e98ca Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sun, 13 Jun 2021 02:04:08 +0300 Subject: [PATCH] v.checker: bump checker_match_exhaustive_cutoff_limit to 12 --- vlib/v/pref/pref.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/pref/pref.v b/vlib/v/pref/pref.v index 9d75a9e05d..bea750376f 100644 --- a/vlib/v/pref/pref.v +++ b/vlib/v/pref/pref.v @@ -178,7 +178,7 @@ pub mut: is_cstrict bool // turn on more C warnings; slightly slower assert_failure_mode AssertFailureMode // whether to call abort() or print_backtrace() after an assertion failure // checker settings: - checker_match_exhaustive_cutoff_limit int = 10 + checker_match_exhaustive_cutoff_limit int = 12 } pub fn parse_args(known_external_commands []string, args []string) (&Preferences, string) {