From: Misha Brukman Date: Thu, 5 May 2005 22:30:40 +0000 (+0000) Subject: Convert tabs to spaces X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e25bc8c9571ed49c0a2d6b647a56679623f325a5;p=oota-llvm.git Convert tabs to spaces git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21703 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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; } };