Home | History | Annotate | Download | only in unord.map.cnstr

Lines Matching full:notconstructible

21 #include "../../../NotConstructible.h"
30 typedef std::unordered_map<NotConstructible, NotConstructible,
31 test_hash<std::hash<NotConstructible> >,
32 test_compare<std::equal_to<NotConstructible> >,
33 test_allocator<std::pair<const NotConstructible,
34 NotConstructible> >
38 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
39 assert(c.key_eq() == test_compare<std::equal_to<NotConstructible> >());
41 (test_allocator<std::pair<const NotConstructible, NotConstructible> >()));
50 typedef std::unordered_map<NotConstructible, NotConstructible,
51 test_hash<std::hash<NotConstructible> >,
52 test_compare<std::equal_to<NotConstructible> >,
53 min_allocator<std::pair<const NotConstructible,
54 NotConstructible> >
58 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
59 assert(c.key_eq() == test_compare<std::equal_to<NotConstructible> >());
61 (min_allocator<std::pair<const NotConstructible, NotConstructible> >()));