diff options
Diffstat (limited to 'runtime/mirror/string-alloc-inl.h')
-rw-r--r-- | runtime/mirror/string-alloc-inl.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/mirror/string-alloc-inl.h b/runtime/mirror/string-alloc-inl.h index 32b6bb46f6..e2b08054ca 100644 --- a/runtime/mirror/string-alloc-inl.h +++ b/runtime/mirror/string-alloc-inl.h @@ -192,11 +192,11 @@ inline ObjPtr<String> String::Alloc(Thread* self, gc::Heap* heap = runtime->GetHeap(); return ObjPtr<String>::DownCast( - heap->AllocObjectWithAllocator<kIsInstrumented, true>(self, - string_class, - alloc_size, - allocator_type, - pre_fence_visitor)); + heap->AllocObjectWithAllocator<kIsInstrumented>(self, + string_class, + alloc_size, + allocator_type, + pre_fence_visitor)); } template <bool kIsInstrumented> |