From e25bc8c9571ed49c0a2d6b647a56679623f325a5 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21703 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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; } }; -- 2.11.0