enclosed more min/ max in parentheses to default MFC macros

This commit is contained in:
Phil Nash
2017-10-12 16:00:04 +01:00
parent 276393e4e5
commit 2eb93f47f7
4 changed files with 7 additions and 6 deletions

View File

@@ -13,7 +13,7 @@
namespace Catch {
namespace Detail {
double max(double lhs, double rhs) {
double dmax(double lhs, double rhs) {
if (lhs < rhs) {
return rhs;
}