diff options
author | 2014-05-19 16:49:03 -0700 | |
---|---|---|
committer | 2014-05-19 22:27:39 -0700 | |
commit | 700a402244a1a423da4f3ba8032459f4b65fa18f (patch) | |
tree | 4c22fcda04d271bd55a37aff30650214af17a90c /compiler/llvm/compiler_llvm.h | |
parent | 047c11adcbcbc0bcf210defdfcbada763961ffee (diff) |
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
Diffstat (limited to 'compiler/llvm/compiler_llvm.h')
-rw-r--r-- | compiler/llvm/compiler_llvm.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/compiler/llvm/compiler_llvm.h b/compiler/llvm/compiler_llvm.h index c2211fb92c..cc74deb7be 100644 --- a/compiler/llvm/compiler_llvm.h +++ b/compiler/llvm/compiler_llvm.h @@ -17,18 +17,17 @@ #ifndef ART_COMPILER_LLVM_COMPILER_LLVM_H_ #define ART_COMPILER_LLVM_COMPILER_LLVM_H_ +#include <memory> +#include <string> +#include <utility> +#include <vector> + #include "base/macros.h" #include "dex_file.h" #include "driver/compiler_driver.h" #include "instruction_set.h" #include "mirror/object.h" -#include <UniquePtr.h> - -#include <string> -#include <utility> -#include <vector> - namespace art { class CompiledMethod; class CompilerDriver; |