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/dex/compiler_ir.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compiler/dex/compiler_ir.h') diff --git a/compiler/dex/compiler_ir.h b/compiler/dex/compiler_ir.h index 70159cae9f..35d777ec7a 100644 --- a/compiler/dex/compiler_ir.h +++ b/compiler/dex/compiler_ir.h @@ -85,8 +85,8 @@ struct CompilationUnit { ArenaAllocator arena; ArenaStack arena_stack; // Arenas for ScopedArenaAllocator. - UniquePtr mir_graph; // MIR container. - UniquePtr cg; // Target-specific codegen. + std::unique_ptr mir_graph; // MIR container. + std::unique_ptr cg; // Target-specific codegen. TimingLogger timings; }; -- cgit v1.2.3-59-g8ed1b