summaryrefslogtreecommitdiffstats
path: root/compiler/dex/frontend.h
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/dex/frontend.h')
-rw-r--r--compiler/dex/frontend.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/dex/frontend.h b/compiler/dex/frontend.h
index f714ecd3ad..c3b8d120d2 100644
--- a/compiler/dex/frontend.h
+++ b/compiler/dex/frontend.h
@@ -101,10 +101,10 @@ class LLVMInfo {
}
private:
- UniquePtr< ::llvm::LLVMContext> llvm_context_;
+ std::unique_ptr< ::llvm::LLVMContext> llvm_context_;
::llvm::Module* llvm_module_; // Managed by context_.
- UniquePtr<art::llvm::IntrinsicHelper> intrinsic_helper_;
- UniquePtr<art::llvm::IRBuilder> ir_builder_;
+ std::unique_ptr<art::llvm::IntrinsicHelper> intrinsic_helper_;
+ std::unique_ptr<art::llvm::IRBuilder> ir_builder_;
};
class CompiledMethod;