File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -467,7 +467,7 @@ namespace cppsort::detail::grail
467467 auto && proj = utility::as_function (projection);
468468 auto size = last - first;
469469
470- auto kbuf = std::min (K, LExtBuf);
470+ auto kbuf = ( std::min) (K, LExtBuf);
471471 while (kbuf & (kbuf - 1 )) {
472472 kbuf &= kbuf - 1 ; // max power or 2 - just in case
473473 }
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ namespace cppsort::probe
9292 while (j <= i && not comp (proj (*lr_cummax[j - 1 ]), proj (*rl_min_it))
9393 && (j == 1 || not comp (proj (*rl_min_it), proj (*lr_cummax[j - 2 ])))) {
9494 // Compute the next value of DM
95- res = std::max (res, i - j);
95+ res = ( std::max) (res, i - j);
9696 // Compute the next value of RL
9797 if (--i <= res) {
9898 return res;
You can’t perform that action at this time.
0 commit comments