diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-05-05 22:30:40 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-05-05 22:30:40 +0000 |
commit | 08d66b4e109d4c85334a1589ebdb1640c6acc854 (patch) | |
tree | 7d2a9ce700e2d76e08167e1dad95febec1d53a62 | |
parent | 4a454c80db66a7ee652ae8128c08bcb93d2855a8 (diff) | |
download | bcm5719-llvm-08d66b4e109d4c85334a1589ebdb1640c6acc854.tar.gz bcm5719-llvm-08d66b4e109d4c85334a1589ebdb1640c6acc854.zip |
Convert tabs to spaces
llvm-svn: 21703
-rw-r--r-- | llvm/include/llvm/ADT/hash_map.in | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/llvm/include/llvm/ADT/hash_map.in b/llvm/include/llvm/ADT/hash_map.in index 9d2d7923945..1249dbbc488 100644 --- a/llvm/include/llvm/ADT/hash_map.in +++ b/llvm/include/llvm/ADT/hash_map.in @@ -74,24 +74,24 @@ namespace HASH_NAMESPACE { template <class DataType> struct hash { - unsigned int operator()(const unsigned int& x) const { - return x; - } + unsigned int operator()(const unsigned int& x) const { + return x; + } }; template <typename KeyType, - typename ValueType, - class _HashFcn = hash<KeyType>, - class _EqualKey = equal_to<KeyType>, - class _A = allocator <ValueType> > + typename ValueType, + class _HashFcn = hash<KeyType>, + class _EqualKey = equal_to<KeyType>, + class _A = allocator <ValueType> > class hash_map : public rw_hashmap<KeyType, ValueType, class _HashFcn, class _EqualKey, class _A> { }; template <typename KeyType, - typename ValueType, - class _HashFcn = hash<KeyType>, - class _EqualKey = equal_to<KeyType>, - class _A = allocator <ValueType> > + typename ValueType, + class _HashFcn = hash<KeyType>, + class _EqualKey = equal_to<KeyType>, + class _A = allocator <ValueType> > class hash_multimap : public rw_hashmultimap<KeyType, ValueType, class _HashFcn, class _EqualKey, class _A> { }; @@ -117,7 +117,7 @@ namespace stdext { // Provide a hash function for unsigned ints... template<> struct hash<unsigned int> { inline size_t operator()(unsigned int Val) const { - return Val; + return Val; } }; |