diff options
| author | Steven Moreland <smoreland@google.com> | 2017-07-18 16:53:49 -0700 |
|---|---|---|
| committer | Steven Moreland <smoreland@google.com> | 2017-07-18 18:25:55 -0700 |
| commit | e431e2758d62cf56f7f347f5a8c9d79e41b6dcd7 (patch) | |
| tree | b8733533e2478069aabbdc3a34d0f40aff33e1b1 /benchmark | |
| parent | b98d384eb424ad7e1dc9816392ded33dce0e0372 (diff) | |
| download | art-e431e2758d62cf56f7f347f5a8c9d79e41b6dcd7.tar.gz art-e431e2758d62cf56f7f347f5a8c9d79e41b6dcd7.tar.bz2 art-e431e2758d62cf56f7f347f5a8c9d79e41b6dcd7.zip | |
art: use proper nativehelper headers
libnativeheader exports headers under nativeheader. These were
available before incorrectly as global headers in order to give
access to jni.h.
Test: modules using art find headers
Bug: 63762847
Change-Id: I5c820d677e94e07b2859e78610bc997fe51b41dc
Diffstat (limited to 'benchmark')
| -rw-r--r-- | benchmark/scoped-primitive-array/scoped_primitive_array.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/scoped-primitive-array/scoped_primitive_array.cc b/benchmark/scoped-primitive-array/scoped_primitive_array.cc index 1664157297..005cae4ac9 100644 --- a/benchmark/scoped-primitive-array/scoped_primitive_array.cc +++ b/benchmark/scoped-primitive-array/scoped_primitive_array.cc @@ -15,7 +15,7 @@ */ #include "jni.h" -#include "ScopedPrimitiveArray.h" +#include "nativehelper/ScopedPrimitiveArray.h" extern "C" JNIEXPORT jlong JNICALL Java_ScopedPrimitiveArrayBenchmark_measureByteArray( JNIEnv* env, jclass, int reps, jbyteArray arr) { |
