diff --git a/include/boost/test/tools/collection_comparison_op.hpp b/include/boost/test/tools/collection_comparison_op.hpp
index 81a7046..9a5d9f5 100644
a
|
b
|
compare_collections( Lhs const& lhs, Rhs const& rhs, boost::type<op::GE<L, R> >*
|
325 | 325 | // ********* specialization of comparison operators for collections ********* // |
326 | 326 | // ************************************************************************** // |
327 | 327 | |
328 | | #define DEFINE_COLLECTION_COMPARISON( oper, name, _ ) \ |
| 328 | #define DEFINE_COLLECTION_COMPARISON( oper, name, rev ) \ |
329 | 329 | template<typename Lhs,typename Rhs> \ |
330 | 330 | struct name<Lhs,Rhs,typename boost::enable_if_c< \ |
331 | 331 | unit_test::is_forward_iterable<Lhs>::value && \ |
… |
… |
public: \
|
356 | 356 | report( std::ostream&, \ |
357 | 357 | PrevExprType const&, \ |
358 | 358 | Rhs const& ) {} \ |
| 359 | \ |
| 360 | static char const* revert() \ |
| 361 | { return " " #rev " "; } \ |
| 362 | \ |
359 | 363 | }; \ |
360 | 364 | /**/ |
361 | 365 | |