// -*- C++ -*- //===------------------------- hash_set ------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// #ifndef _LIBCPP_EXT_HASH #define _LIBCPP_EXT_HASH #pragma GCC system_header #include #include namespace __gnu_cxx { using namespace std; template struct _LIBCPP_TYPE_VIS hash : public std::hash { }; template <> struct _LIBCPP_TYPE_VIS hash : public unary_function { _LIBCPP_INLINE_VISIBILITY size_t operator()(const char *__c) const _NOEXCEPT { return __do_string_hash(__c, __c + strlen(__c)); } }; template <> struct _LIBCPP_TYPE_VIS hash : public unary_function { _LIBCPP_INLINE_VISIBILITY size_t operator()(char *__c) const _NOEXCEPT { return __do_string_hash(__c, __c + strlen(__c)); } }; } #endif // _LIBCPP_EXT_HASH