diff options
author | 2014-12-08 16:59:43 -0800 | |
---|---|---|
committer | 2014-12-22 10:01:27 -0800 | |
commit | e21dc3db191df04c100620965bee4617b3b24397 (patch) | |
tree | 2ad762c6afb024bf95e1eced3d584649a4d57d23 /compiler/utils/array_ref.h | |
parent | 6d1a047b4b3f9707d4ee1cc19e99717ee021ef48 (diff) |
ART: Swap-space in the compiler
Introduce a swap-space and corresponding allocator to transparently
switch native allocations to memory backed by a file.
Bug: 18596910
(cherry picked from commit 62746d8d9c4400e4764f162b22bfb1a32be287a9)
Change-Id: I131448f3907115054a592af73db86d2b9257ea33
Diffstat (limited to 'compiler/utils/array_ref.h')
-rw-r--r-- | compiler/utils/array_ref.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/array_ref.h b/compiler/utils/array_ref.h index 1a7f2e8c02..b1b0ee5e53 100644 --- a/compiler/utils/array_ref.h +++ b/compiler/utils/array_ref.h @@ -84,7 +84,7 @@ class ArrayRef { template <typename U, typename Alloc> ArrayRef(const std::vector<U, Alloc>& v, - typename std::enable_if<std::is_same<T, const U>::value, tag>::tag + typename std::enable_if<std::is_same<T, const U>::value, tag>::type t ATTRIBUTE_UNUSED = tag()) : array_(v.data()), size_(v.size()) { } |