diff options
author | 2019-03-29 16:12:04 +0000 | |
---|---|---|
committer | 2019-04-01 09:37:59 +0000 | |
commit | bdc93b47e2e7e8f17413669e03bc461d259d16f6 (patch) | |
tree | bd1c632196a437e90d012475afa83adf614be538 /compiler | |
parent | f52d92fce224c86491d9b0fd6fca805564119426 (diff) |
ObjPtr<>-ify StackTraceElement and ClassLoader.
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Bug: 31113334
Change-Id: I457eeda55bbfb905dd2de0abd68451ab42ef9c1f
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/exception_test.cc | 2 | ||||
-rw-r--r-- | compiler/jni/jni_compiler_test.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/exception_test.cc b/compiler/exception_test.cc index d5ceafeac9..633e124d07 100644 --- a/compiler/exception_test.cc +++ b/compiler/exception_test.cc @@ -33,7 +33,7 @@ #include "mirror/class-inl.h" #include "mirror/object-inl.h" #include "mirror/object_array-inl.h" -#include "mirror/stack_trace_element.h" +#include "mirror/stack_trace_element-inl.h" #include "oat_quick_method_header.h" #include "obj_ptr-inl.h" #include "optimizing/stack_map_stream.h" diff --git a/compiler/jni/jni_compiler_test.cc b/compiler/jni/jni_compiler_test.cc index cbd203183d..0d0f8a0c30 100644 --- a/compiler/jni/jni_compiler_test.cc +++ b/compiler/jni/jni_compiler_test.cc @@ -34,7 +34,7 @@ #include "mirror/class_loader.h" #include "mirror/object-inl.h" #include "mirror/object_array-inl.h" -#include "mirror/stack_trace_element.h" +#include "mirror/stack_trace_element-inl.h" #include "nativehelper/ScopedLocalRef.h" #include "nativeloader/native_loader.h" #include "runtime.h" |