diff --git a/include/boost/concept_archetype.hpp b/include/boost/concept_archetype.hpp index 28bdb28..de310fd 100644 --- a/include/boost/concept_archetype.hpp +++ b/include/boost/concept_archetype.hpp @@ -148,14 +148,14 @@ namespace boost { template boolean_archetype operator==(const equality_comparable_archetype&, - const equality_comparable_archetype&) + const equality_comparable_archetype&) { return boolean_archetype(static_object::get()); } template boolean_archetype operator!=(const equality_comparable_archetype&, - const equality_comparable_archetype&) + const equality_comparable_archetype&) { return boolean_archetype(static_object::get()); } @@ -176,14 +176,14 @@ namespace boost { template boolean_archetype operator==(const equality_comparable2_first_archetype&, - const equality_comparable2_second_archetype&) + const equality_comparable2_second_archetype&) { return boolean_archetype(static_object::get()); } template boolean_archetype operator!=(const equality_comparable2_first_archetype&, - const equality_comparable2_second_archetype&) + const equality_comparable2_second_archetype&) { return boolean_archetype(static_object::get()); } @@ -197,7 +197,7 @@ namespace boost { template boolean_archetype operator<(const less_than_comparable_archetype&, - const less_than_comparable_archetype&) + const less_than_comparable_archetype&) { return boolean_archetype(static_object::get()); } @@ -212,28 +212,28 @@ namespace boost { template boolean_archetype operator<(const comparable_archetype&, - const comparable_archetype&) + const comparable_archetype&) { return boolean_archetype(static_object::get()); } template boolean_archetype operator<=(const comparable_archetype&, - const comparable_archetype&) + const comparable_archetype&) { return boolean_archetype(static_object::get()); } template boolean_archetype operator>(const comparable_archetype&, - const comparable_archetype&) + const comparable_archetype&) { return boolean_archetype(static_object::get()); } template boolean_archetype operator>=(const comparable_archetype&, - const comparable_archetype&) + const comparable_archetype&) { return boolean_archetype(static_object::get()); } @@ -296,7 +296,7 @@ namespace boost { template \ NAME##_archetype \ operator OP (const NAME##_archetype&,\ - const NAME##_archetype&) \ + const NAME##_archetype&) \ { \ return \ NAME##_archetype(static_object::get()); \