Skip to content
Snippets Groups Projects
Commit df80fdf5 authored by Mathieu Valois's avatar Mathieu Valois
Browse files

Fix wrong minstat computation

parent 22a7540e
No related branches found
No related tags found
No related merge requests found
Pipeline #6317 passed
...@@ -18,10 +18,10 @@ Policy::operator string() const { ...@@ -18,10 +18,10 @@ Policy::operator string() const {
Policy::operator minMax() const { Policy::operator minMax() const {
minMax m; minMax m;
m.maxlower = lower; m.minlower = m.maxlower = lower;
m.maxupper = upper; m.minupper = m.maxupper = upper;
m.maxdigit = digit; m.mindigit = m.maxdigit = digit;
m.maxspecial = special; m.minspecial = m.maxspecial = special;
return m; return m;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment