diff options
author | 2017-01-31 08:58:55 -0800 | |
---|---|---|
committer | 2017-02-03 10:03:52 -0800 | |
commit | 90b936ddda63139ff46a6755c3b83ad6e4ab4ac5 (patch) | |
tree | c7ce2c3004eecc16ab41ed7cde105c3019638d4b /runtime/openjdkjvm/OpenjdkJvm.cc | |
parent | b78a8af993e877d74c5938f65f95feaf2fa01321 (diff) |
ART: Refactor verify_object.h
Move the actual VerifyObject check into a new cc file, as we
commonly don't enable the check at all. This allows to cut the
-inl include from almost all current users.
This also exposes missing -inl includes. Also fix up some of our old
mess where .h defined functions require -inl.h defined functions.
Test: m
Change-Id: I3dd821bbe2015564a29bf1ed9be00f7a7276ad61
Diffstat (limited to 'runtime/openjdkjvm/OpenjdkJvm.cc')
-rw-r--r-- | runtime/openjdkjvm/OpenjdkJvm.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/openjdkjvm/OpenjdkJvm.cc b/runtime/openjdkjvm/OpenjdkJvm.cc index 2f51e27b2d..bdaad20d7e 100644 --- a/runtime/openjdkjvm/OpenjdkJvm.cc +++ b/runtime/openjdkjvm/OpenjdkJvm.cc @@ -46,7 +46,7 @@ #include "scoped_thread_state_change-inl.h" #include "ScopedUtfChars.h" #include "mirror/class_loader.h" -#include "verify_object-inl.h" +#include "verify_object.h" #include "base/logging.h" #include "base/macros.h" #include "../../libcore/ojluni/src/main/native/jvm.h" // TODO(narayan): fix it |