mirror of
https://github.com/curl/curl.git
synced 2026-04-15 01:11:40 +03:00
top-complexity: lower max allowed complexity threshold to 90
Down from 100. Also make it show all functions with complexity > 65 (down from 70). Closes #17689
This commit is contained in:
parent
e3d9675924
commit
84b62696d9
1 changed files with 2 additions and 2 deletions
|
|
@ -79,10 +79,10 @@ my %whitelist = (
|
|||
);
|
||||
|
||||
# functions with complexity above this level causes the function to return error
|
||||
my $cutoff = 100;
|
||||
my $cutoff = 90;
|
||||
|
||||
# functions above this complexity level are shown
|
||||
my $show = 70;
|
||||
my $show = 65;
|
||||
|
||||
my $error = 0;
|
||||
my %where;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue