From 276f82fe50790b2d6acb7177a68991664b06e64d Mon Sep 17 00:00:00 2001 From: Dan Eble Date: Sat, 8 Aug 2015 22:06:48 -0400 Subject: [PATCH] Issue 4547: remove unnecessary min() and max() functions --- flower/include/compare.hh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/flower/include/compare.hh b/flower/include/compare.hh index 0b398aa18c..0ec1173951 100644 --- a/flower/include/compare.hh +++ b/flower/include/compare.hh @@ -37,10 +37,6 @@ prefix ONE_OPERATOR (type, function, !=) \ prefix ONE_OPERATOR (type, function, <) \ prefix ONE_OPERATOR (type, function, <=) \ - /* namespace std { */ \ - prefix inline type max (type t1, type t2) { return (t1 > t2) ? t1 : t2; } \ - prefix inline type min (type t1, type t2) { return (t1 < t2) ? t1 : t2; } \ - /* } */ \ /* stupid fix to allow ; */ \ prefix bool operator < (type t1, type t2) -- 2.39.2