//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template // struct hash // : public unary_function // { // size_t operator()(T val) const; // }; // Not very portable #include #include #include #include #include template void test() { static_assert((std::is_base_of, std::hash >::value), ""); std::hash h; std::size_t t0 = h(0.); std::size_t tn0 = h(-0.); std::size_t tp1 = h(0.1); std::size_t t1 = h(1); std::size_t tn1 = h(-1); std::size_t pinf = h(INFINITY); std::size_t ninf = h(-INFINITY); assert(t0 == tn0); assert(t0 != tp1); assert(t0 != t1); assert(t0 != tn1); assert(t0 != pinf); assert(t0 != ninf); assert(tp1 != t1); assert(tp1 != tn1); assert(tp1 != pinf); assert(tp1 != ninf); assert(t1 != tn1); assert(t1 != pinf); assert(t1 != ninf); assert(tn1 != pinf); assert(tn1 != ninf); assert(pinf != ninf); } int main() { test(); test(); test(); }