[llvm-commits] [llvm] r171601 - /llvm/trunk/include/llvm/ADT/DenseMap.h
NAKAMURA Takumi
geek4civic at gmail.com
Fri Jan 4 21:16:53 PST 2013
Author: chapuni
Date: Fri Jan 4 23:16:53 2013
New Revision: 171601
URL: http://llvm.org/viewvc/llvm-project?rev=171601&view=rev
Log:
Whitespace.
Modified:
llvm/trunk/include/llvm/ADT/DenseMap.h
Modified: llvm/trunk/include/llvm/ADT/DenseMap.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/DenseMap.h?rev=171601&r1=171600&r2=171601&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/DenseMap.h (original)
+++ llvm/trunk/include/llvm/ADT/DenseMap.h Fri Jan 4 23:16:53 2013
@@ -75,7 +75,7 @@
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 @@
++Ptr;
}
};
-
+
template<typename KeyT, typename ValueT, typename KeyInfoT>
static inline size_t
capacity_in_bytes(const DenseMap<KeyT, ValueT, KeyInfoT> &X) {
More information about the llvm-commits
mailing list