OSDN Git Service

fix indentation. std::pair is "isPod" if the first/second are both isPod.
authorChris Lattner <sabre@nondot.org>
Sun, 30 Nov 2008 00:50:20 +0000 (00:50 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 30 Nov 2008 00:50:20 +0000 (00:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60262 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/DenseMap.h

index c70d73c..c2093d6 100644 (file)
@@ -67,22 +67,23 @@ struct DenseMapInfo<std::pair<T, U> > {
   }
   static inline Pair getTombstoneKey() { 
     return std::make_pair(FirstInfo::getTombstoneKey(), 
-                            SecondInfo::getEmptyKey()); }
-    static unsigned getHashValue(const Pair& PairVal) {
-      uint64_t key = (uint64_t)FirstInfo::getHashValue(PairVal.first) << 32
-            | (uint64_t)SecondInfo::getHashValue(PairVal.second);
-      key += ~(key << 32);
-      key ^= (key >> 22);
-      key += ~(key << 13);
-      key ^= (key >> 8);
-      key += (key << 3);
-      key ^= (key >> 15);
-      key += ~(key << 27);
-      key ^= (key >> 31);
-      return (unsigned)key;
-    }
-    static bool isEqual(const Pair& LHS, const Pair& RHS) { return LHS == RHS; }
-    static bool isPod() { return false; }
+                            SecondInfo::getEmptyKey());
+  }
+  static unsigned getHashValue(const Pair& PairVal) {
+    uint64_t key = (uint64_t)FirstInfo::getHashValue(PairVal.first) << 32
+          | (uint64_t)SecondInfo::getHashValue(PairVal.second);
+    key += ~(key << 32);
+    key ^= (key >> 22);
+    key += ~(key << 13);
+    key ^= (key >> 8);
+    key += (key << 3);
+    key ^= (key >> 15);
+    key += ~(key << 27);
+    key ^= (key >> 31);
+    return (unsigned)key;
+  }
+  static bool isEqual(const Pair& LHS, const Pair& RHS) { return LHS == RHS; }
+  static bool isPod() { return FirstInfo::isPod() && SecondInfo::isPod(); }
 };
 
 template<typename KeyT, typename ValueT,