From: Dan Eble Date: Sun, 9 Aug 2015 02:06:48 +0000 (-0400) Subject: Issue 4547: remove unnecessary min() and max() functions X-Git-Tag: release/2.19.26-1~45 X-Git-Url: https://git.donarmstrong.com/?p=lilypond.git;a=commitdiff_plain;h=276f82fe50790b2d6acb7177a68991664b06e64d Issue 4547: remove unnecessary min() and max() functions --- 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)