summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2012-08-01 12:55:14 -0700
committerElliott Hughes <enh@google.com>2012-08-01 12:55:14 -0700
commit4e0af08342cdb9c29b6039ba61ff6bd0bcbf125d (patch)
treee360d76c09c3c907a88ef0f536ab452f0f282516 /include
parent70e86f292094172b586caa0bf3104e7cfcb28b7e (diff)
downloadlibcore-4e0af08342cdb9c29b6039ba61ff6bd0bcbf125d.zip
libcore-4e0af08342cdb9c29b6039ba61ff6bd0bcbf125d.tar.gz
libcore-4e0af08342cdb9c29b6039ba61ff6bd0bcbf125d.tar.bz2
Clean up #includes in ScopedLocalRef.h.
Change-Id: I755dc2feb90d767a1e16e98bd39f1de7681eb60c
Diffstat (limited to 'include')
-rw-r--r--include/ScopedLocalRef.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/ScopedLocalRef.h b/include/ScopedLocalRef.h
index e239b9e..71d5776 100644
--- a/include/ScopedLocalRef.h
+++ b/include/ScopedLocalRef.h
@@ -17,7 +17,9 @@
#ifndef SCOPED_LOCAL_REF_H_included
#define SCOPED_LOCAL_REF_H_included
-#include "JNIHelp.h"
+#include "jni.h"
+
+#include <stddef.h>
// A smart pointer that deletes a JNI local reference when it goes out of scope.
template<typename T>