diff --git a/test/check_equal_containers.hpp b/test/check_equal_containers.hpp index e9b6607..80a35da 100644 --- a/test/check_equal_containers.hpp +++ b/test/check_equal_containers.hpp @@ -119,6 +119,17 @@ struct less_transparent } }; +struct equal_transparent +{ + typedef void is_transparent; + + template + bool operator()(const T &t, const U &u) const + { + return t == u; + } +}; + } //namespace test{ } //namespace container { } //namespace boost{