1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

v.checker: bump checker_match_exhaustive_cutoff_limit to 12

This commit is contained in:
Delyan Angelov 2021-06-13 02:04:08 +03:00
parent 9e270bacf7
commit ed07f00729
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -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) {