summaryrefslogtreecommitdiff
path: root/flower
diff options
context:
space:
mode:
authorDan Eble <nine.fierce.ballads@gmail.com>2015-08-08 22:06:48 -0400
committerDan Eble <nine.fierce.ballads@gmail.com>2015-08-14 17:21:19 -0400
commit276f82fe50790b2d6acb7177a68991664b06e64d (patch)
tree73175234c158cea40a2303bd1c6afe187d082c11 /flower
parentb95878a57a7894ed6eaf7f615fe02ea1cb2165d0 (diff)
Issue 4547: remove unnecessary min() and max() functions
Diffstat (limited to 'flower')
-rw-r--r--flower/include/compare.hh4
1 files changed, 0 insertions, 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)