diff options
author | 2014-05-19 16:49:03 -0700 | |
---|---|---|
committer | 2014-05-19 22:27:39 -0700 | |
commit | 700a402244a1a423da4f3ba8032459f4b65fa18f (patch) | |
tree | 4c22fcda04d271bd55a37aff30650214af17a90c /runtime/dex_method_iterator.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 'runtime/dex_method_iterator.h')
-rw-r--r-- | runtime/dex_method_iterator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/dex_method_iterator.h b/runtime/dex_method_iterator.h index 1975e48330..806266d26d 100644 --- a/runtime/dex_method_iterator.h +++ b/runtime/dex_method_iterator.h @@ -140,7 +140,7 @@ class DexMethodIterator { uint32_t class_def_index_; const DexFile::ClassDef* class_def_; const byte* class_data_; - UniquePtr<ClassDataItemIterator> it_; + std::unique_ptr<ClassDataItemIterator> it_; bool direct_method_; }; |