summaryrefslogtreecommitdiffstats
path: root/runtime/gc
diff options
context:
space:
mode:
authorVladimir Marko <vmarko@google.com>2014-05-02 16:55:00 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-05-02 16:55:00 +0000
commit6a6a5304e75a1af484975cedc832d0a80c3e5e61 (patch)
tree547cc708e06e6541676b17066023ae6f07b2049b /runtime/gc
parent56a341a82ece9aa4f2a071629f3e1fd1adf988ae (diff)
parent8194963098247be6bca9cc4a54dbfa65c73e8ccc (diff)
downloadart-6a6a5304e75a1af484975cedc832d0a80c3e5e61.zip
art-6a6a5304e75a1af484975cedc832d0a80c3e5e61.tar.gz
art-6a6a5304e75a1af484975cedc832d0a80c3e5e61.tar.bz2
Merge "Replace CountOneBits and __builtin_popcount with POPCOUNT."
Diffstat (limited to 'runtime/gc')
-rw-r--r--runtime/gc/accounting/gc_allocator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/accounting/gc_allocator.h b/runtime/gc/accounting/gc_allocator.h
index 4fe9367..7dd7cca 100644
--- a/runtime/gc/accounting/gc_allocator.h
+++ b/runtime/gc/accounting/gc_allocator.h
@@ -73,7 +73,7 @@ class GcAllocatorImpl : public std::allocator<T> {
// GCAllocatorImpl<T> if kMeasureGCMemoryOverhead is true, std::allocator<T> otherwise.
template <typename T>
class GcAllocator : public TypeStaticIf<kMeasureGcMemoryOverhead, GcAllocatorImpl<T>,
- std::allocator<T> >::value {
+ std::allocator<T> >::type {
};
} // namespace accounting