Whitespace.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Sat, 5 Jan 2013 05:16:53 +0000 (05:16 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Sat, 5 Jan 2013 05:16:53 +0000 (05:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171601 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/DenseMap.h

index 4a2d13786f220aaefbe9ac940056026f7a18db57..01f7e90c212cb123e11304d5a3652f552f211d9f 100644 (file)
@@ -75,7 +75,7 @@ public:
 
   void clear() {
     if (getNumEntries() == 0 && getNumTombstones() == 0) return;
-    
+
     // If the capacity of the array is huge, and the # elements used is small,
     // shrink the array.
     if (getNumEntries() * 4 < getNumBuckets() && getNumBuckets() > 64) {
@@ -1028,7 +1028,7 @@ private:
       ++Ptr;
   }
 };
-  
+
 template<typename KeyT, typename ValueT, typename KeyInfoT>
 static inline size_t
 capacity_in_bytes(const DenseMap<KeyT, ValueT, KeyInfoT> &X) {