diff options
author | 2018-10-29 12:55:35 -0700 | |
---|---|---|
committer | 2018-10-30 10:57:42 -0700 | |
commit | fd63bbf88147e19c32c21678b90d8cc450496fc3 (patch) | |
tree | d78f12fbfd72bf29b16e13a7f3fabfca5f1d3f88 /runtime/native/java_lang_String.cc | |
parent | 0ee508253edcdee41a80fcbf1511234ca176233d (diff) |
ART: Add string-alloc-inl.h
In an effort to reduce the (transitive) proliferation of heap-inl
add a specific inline header for string allocation.
Bug: 118385392
Test: mmma art
Test: m test-art-host
Change-Id: I68d3bcf2b3615d12231010940d0a24a1dbc03826
Diffstat (limited to 'runtime/native/java_lang_String.cc')
-rw-r--r-- | runtime/native/java_lang_String.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/native/java_lang_String.cc b/runtime/native/java_lang_String.cc index 78ec859ef9..4be2086ec9 100644 --- a/runtime/native/java_lang_String.cc +++ b/runtime/native/java_lang_String.cc @@ -23,8 +23,8 @@ #include "jni/jni_internal.h" #include "mirror/array.h" #include "mirror/object-inl.h" +#include "mirror/string-alloc-inl.h" #include "mirror/string-inl.h" -#include "mirror/string.h" #include "native_util.h" #include "nativehelper/scoped_local_ref.h" #include "scoped_fast_native_object_access-inl.h" |