// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // // Deal with the differences between Microsoft and GNU implemenations // of hash_map. Allows all platforms to use |base::hash_map| and // |base::hash_set|. // eg: // base::hash_map my_map; // base::hash_set my_set; // #ifndef BASE_HASH_TABLES_H__ #define BASE_HASH_TABLES_H__ #include "build/build_config.h" #if defined(COMPILER_MSVC) #include #include namespace base { using stdext::hash_map; using stdext::hash_set; } #elif defined(COMPILER_GCC) #include #include #include namespace base { using __gnu_cxx::hash_map; using __gnu_cxx::hash_set; } // Implement string hash functions so that strings of various flavors can // be used as keys in STL maps and sets. namespace __gnu_cxx { template<> struct hash { size_t operator()(const wchar_t* s) const { return std::tr1::hash()(s); } }; template<> struct hash { size_t operator()(const wchar_t* s) const { return std::tr1::hash()(s); } }; template<> struct hash { size_t operator()(const std::wstring& s) const { return std::tr1::hash()(s); } }; template<> struct hash { size_t operator()(const std::wstring& s) const { return std::tr1::hash()(s); } }; template<> struct hash { size_t operator()(const std::string& s) const { return std::tr1::hash()(s); } }; template<> struct hash { size_t operator()(const std::string& s) const { return std::tr1::hash()(s); } }; } #endif #endif // BASE_HASH_TABLES_H__