diff options
| author | 2018-05-31 12:55:53 +0000 | |
|---|---|---|
| committer | 2018-05-31 12:55:53 +0000 | |
| commit | 1539a11150ca9c28fec353b38508267c41d7814b (patch) | |
| tree | a720b8e022c4eb6ddf222bdd3fea739147c94065 /compiler/exception_test.cc | |
| parent | c8c4f2930892c612cadea9b5906858745c401707 (diff) | |
| parent | a8bba7d0853b372aea3ed3ea154fb2b2a23c2c9d (diff) | |
Merge "ObjPtr<>-ify ClassLinker::FindClass(), fix 1 stale reference use."
Diffstat (limited to 'compiler/exception_test.cc')
| -rw-r--r-- | compiler/exception_test.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/exception_test.cc b/compiler/exception_test.cc index da1db4593b..15c07870a1 100644 --- a/compiler/exception_test.cc +++ b/compiler/exception_test.cc @@ -34,6 +34,7 @@ #include "mirror/object_array-inl.h" #include "mirror/stack_trace_element.h" #include "oat_quick_method_header.h" +#include "obj_ptr-inl.h" #include "optimizing/stack_map_stream.h" #include "runtime-inl.h" #include "scoped_thread_state_change-inl.h" @@ -122,7 +123,7 @@ class ExceptionTest : public CommonRuntimeTest { ArtMethod* method_g_; private: - mirror::Class* my_klass_; + ObjPtr<mirror::Class> my_klass_; }; TEST_F(ExceptionTest, FindCatchHandler) { |