diff options
author | Ian Rogers <irogers@google.com> | 2014-05-19 16:49:03 -0700 |
---|---|---|
committer | Ian Rogers <irogers@google.com> | 2014-05-19 22:27:39 -0700 |
commit | 700a402244a1a423da4f3ba8032459f4b65fa18f (patch) | |
tree | 4c22fcda04d271bd55a37aff30650214af17a90c /runtime/mirror/art_method.h | |
parent | 047c11adcbcbc0bcf210defdfcbada763961ffee (diff) | |
download | art-700a402244a1a423da4f3ba8032459f4b65fa18f.zip art-700a402244a1a423da4f3ba8032459f4b65fa18f.tar.gz art-700a402244a1a423da4f3ba8032459f4b65fa18f.tar.bz2 |
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/mirror/art_method.h')
-rw-r--r-- | runtime/mirror/art_method.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/mirror/art_method.h b/runtime/mirror/art_method.h index 3950a98..37f26a2 100644 --- a/runtime/mirror/art_method.h +++ b/runtime/mirror/art_method.h @@ -407,13 +407,13 @@ class MANAGED ArtMethod : public Object { HeapReference<Class> declaring_class_; // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access. - HeapReference<ObjectArray<ArtMethod> > dex_cache_resolved_methods_; + HeapReference<ObjectArray<ArtMethod>> dex_cache_resolved_methods_; // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access. - HeapReference<ObjectArray<Class> > dex_cache_resolved_types_; + HeapReference<ObjectArray<Class>> dex_cache_resolved_types_; // Short cuts to declaring_class_->dex_cache_ member for fast compiled code access. - HeapReference<ObjectArray<String> > dex_cache_strings_; + HeapReference<ObjectArray<String>> dex_cache_strings_; // Method dispatch from the interpreter invokes this pointer which may cause a bridge into // compiled code. |