//===----------------------------------------------------------------------===// // // 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 int main() { std::thread::id id1; std::thread::id id2 = std::this_thread::get_id(); typedef std::hash H; H h; assert(h(id1) != h(id2)); }