Whitespace.

llvm-svn: 171601
This commit is contained in:
NAKAMURA Takumi 2013-01-05 05:16:53 +00:00
parent 3b4d2c99ad
commit 6f3ef2d70e
1 changed files with 2 additions and 2 deletions

View File

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