From 6f3ef2d70e8d360f695eb281672cc428f0de84dd Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sat, 5 Jan 2013 05:16:53 +0000 Subject: [PATCH] Whitespace. llvm-svn: 171601 --- llvm/include/llvm/ADT/DenseMap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/include/llvm/ADT/DenseMap.h b/llvm/include/llvm/ADT/DenseMap.h index 4a2d13786f22..01f7e90c212c 100644 --- a/llvm/include/llvm/ADT/DenseMap.h +++ b/llvm/include/llvm/ADT/DenseMap.h @@ -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 static inline size_t capacity_in_bytes(const DenseMap &X) {