Wrap all std::min and std::max calls in parentheses

This commit is contained in:
Scott Hutchinson
2021-01-23 12:58:20 -08:00
committed by Martin Hořeňovský
parent 68975e3ff3
commit b025a007b9
3 changed files with 7 additions and 5 deletions

View File

@@ -68,7 +68,9 @@ namespace Catch {
}
template <typename Clock>
EnvironmentEstimate<FloatDuration<Clock>> estimate_clock_cost(FloatDuration<Clock> resolution) {
auto time_limit = std::min(resolution * clock_cost_estimation_tick_limit, FloatDuration<Clock>(clock_cost_estimation_time_limit));
auto time_limit = (std::min)(
resolution * clock_cost_estimation_tick_limit,
FloatDuration<Clock>(clock_cost_estimation_time_limit));
auto time_clock = [](int k) {
return Detail::measure<Clock>([k] {
for (int i = 0; i < k; ++i) {