From 700a402244a1a423da4f3ba8032459f4b65fa18f Mon Sep 17 00:00:00 2001 From: Ian Rogers Date: Mon, 19 May 2014 16:49:03 -0700 Subject: Now we have a proper C++ library, use std::unique_ptr. Also remove the Android.libcxx.mk and other bits of stlport compatibility mechanics. Change-Id: Icdf7188ba3c79cdf5617672c1cfd0a68ae596a61 --- compiler/common_compiler_test.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'compiler/common_compiler_test.h') diff --git a/compiler/common_compiler_test.h b/compiler/common_compiler_test.h index 7a91e47fb1..fb6c625926 100644 --- a/compiler/common_compiler_test.h +++ b/compiler/common_compiler_test.h @@ -420,18 +420,18 @@ class CommonCompilerTest : public CommonRuntimeTest { image_reservation_.reset(); } - UniquePtr compiler_options_; - UniquePtr verification_results_; - UniquePtr method_inliner_map_; - UniquePtr callbacks_; - UniquePtr compiler_driver_; - UniquePtr timer_; + std::unique_ptr compiler_options_; + std::unique_ptr verification_results_; + std::unique_ptr method_inliner_map_; + std::unique_ptr callbacks_; + std::unique_ptr compiler_driver_; + std::unique_ptr timer_; private: - UniquePtr image_reservation_; + std::unique_ptr image_reservation_; // Chunks must not move their storage after being created - use the node-based std::list. - std::list > header_code_and_maps_chunks_; + std::list> header_code_and_maps_chunks_; }; } // namespace art -- cgit v1.2.3-59-g8ed1b