Lines Matching refs:NotConstructible
15 class NotConstructible
17 NotConstructible(const NotConstructible&);
18 NotConstructible& operator=(const NotConstructible&);
24 operator==(const NotConstructible&, const NotConstructible&)
31 struct hash<NotConstructible>
32 : public std::unary_function<NotConstructible, std::size_t>
34 std::size_t operator()(const NotConstructible&) const {return 0;}