]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/compare.hh
* flower/libc-extension.cc: idem.
[lilypond.git] / flower / include / compare.hh
index ef69ce5162cb29ca8213633636df0cc392c84909..03366b5244e94c8a4e4183cc03feb486e6fd8a69 100644 (file)
@@ -1,7 +1,7 @@
 /*
   flowerlib
 
-  (c) 1996 Han-Wen Nienhuys
+  (c)  1996--2003 Han-Wen Nienhuys
   */
 #ifndef COMPARE_HH
 #define COMPARE_HH
@@ -22,8 +22,8 @@ operator op (type t1, type t2)\
 
 #if defined (__GNUG__) && ! defined (__STRICT_ANSI__)
 #define GPP_MINMAX(type, prefix)\
-       prefix GPP_MINMAX_OPERATOR(type, <?, <)\
-       prefix GPP_MINMAX_OPERATOR(type, >?, >)
+       prefix GPP_MINMAX_OPERATOR (type, <?, <)\
+       prefix GPP_MINMAX_OPERATOR (type, >?, >)
 #else
 #define GPP_MINMAX(type, prefix)
 #endif
@@ -33,21 +33,21 @@ operator op (type t1, type t2)\
     Please fill a & in the type argument if necessary.    
     */
 #define TEMPLATE_INSTANTIATE_COMPARE(type, function, prefix) \
-prefix ONE_OPERATOR(type, function, >)\
-prefix ONE_OPERATOR(type, function, >=)\
-prefix ONE_OPERATOR(type, function, ==)\
-prefix ONE_OPERATOR(type, function, !=)\
-prefix ONE_OPERATOR(type, function, <)\
-prefix ONE_OPERATOR(type, function, <=)\
-GPP_MINMAX(type, prefix)\
+prefix ONE_OPERATOR (type, function, >)\
+prefix ONE_OPERATOR (type, function, >=)\
+prefix ONE_OPERATOR (type, function, ==)\
+prefix ONE_OPERATOR (type, function, !=)\
+prefix ONE_OPERATOR (type, function, <)\
+prefix ONE_OPERATOR (type, function, <=)\
+GPP_MINMAX (type, prefix)\
 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; }\
   \
-prefix  bool operator<(type t1, type t2) /* stupid fix to allow ; */
+prefix  bool operator< (type t1, type t2) /* stupid fix to allow ; */
 
 
     
-#define INSTANTIATE_COMPARE(type, func) TEMPLATE_INSTANTIATE_COMPARE(type,func,)
+#define INSTANTIATE_COMPARE(type, func) TEMPLATE_INSTANTIATE_COMPARE (type,func,)