From e2e80598145cb15cac5252b8d206d6b7ceaa0e30 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Thu, 5 May 2005 22:30:40 +0000 Subject: [PATCH] Convert tabs to spaces llvm-svn: 21703 --- include/llvm/ADT/hash_map.in | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/include/llvm/ADT/hash_map.in b/include/llvm/ADT/hash_map.in index 9d2d7923945..1249dbbc488 100644 --- a/include/llvm/ADT/hash_map.in +++ b/include/llvm/ADT/hash_map.in @@ -74,24 +74,24 @@ namespace HASH_NAMESPACE { template struct hash { - unsigned int operator()(const unsigned int& x) const { - return x; - } + unsigned int operator()(const unsigned int& x) const { + return x; + } }; template , - class _EqualKey = equal_to, - class _A = allocator > + typename ValueType, + class _HashFcn = hash, + class _EqualKey = equal_to, + class _A = allocator > class hash_map : public rw_hashmap { }; template , - class _EqualKey = equal_to, - class _A = allocator > + typename ValueType, + class _HashFcn = hash, + class _EqualKey = equal_to, + class _A = allocator > class hash_multimap : public rw_hashmultimap { }; @@ -117,7 +117,7 @@ namespace stdext { // Provide a hash function for unsigned ints... template<> struct hash { inline size_t operator()(unsigned int Val) const { - return Val; + return Val; } };