diff options
Diffstat (limited to 'runtime/arch/stub_test.cc')
-rw-r--r-- | runtime/arch/stub_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/arch/stub_test.cc b/runtime/arch/stub_test.cc index d9bc105b28..32f313ff3b 100644 --- a/runtime/arch/stub_test.cc +++ b/runtime/arch/stub_test.cc @@ -843,7 +843,7 @@ TEST_F(StubTest, AllocObject) { // Use arbitrary large amount for now. static const size_t kMaxHandles = 1000000; - UniquePtr<StackHandleScope<kMaxHandles> > hsp(new StackHandleScope<kMaxHandles>(self)); + std::unique_ptr<StackHandleScope<kMaxHandles>> hsp(new StackHandleScope<kMaxHandles>(self)); std::vector<Handle<mirror::Object>> handles; // Start allocating with 128K |