diff --git a/ostd/map.hh b/ostd/map.hh index a46d393..1e6453c 100644 --- a/ostd/map.hh +++ b/ostd/map.hh @@ -166,14 +166,14 @@ namespace detail { template< typename K, typename T, typename H = ToHash, - typename C = Equal, + typename C = EqualWithCstr, typename A = Allocator> > using Map = detail::MapImpl; template< typename K, typename T, typename H = ToHash, - typename C = Equal, + typename C = EqualWithCstr, typename A = Allocator> > using Multimap = detail::MapImpl; diff --git a/ostd/set.hh b/ostd/set.hh index 786756e..1bb0f3e 100644 --- a/ostd/set.hh +++ b/ostd/set.hh @@ -137,14 +137,14 @@ namespace detail { template< typename T, typename H = ToHash, - typename C = Equal, + typename C = EqualWithCstr, typename A = Allocator > using Set = detail::SetImpl; template< typename T, typename H = ToHash, - typename C = Equal, + typename C = EqualWithCstr, typename A = Allocator > using Multiset = detail::SetImpl;