summaryrefslogtreecommitdiff
path: root/jni
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2016-10-18 19:52:40 -0400
committerDavid Benjamin <davidben@google.com>2016-10-18 19:55:32 -0400
commiteee841b9cb6590506d65b2777c165bb94a7fb417 (patch)
tree5f7365b3ccc9b152818f9c7c47ea80fa0a201dd1 /jni
parentb548607eb72d031f6016f995e22084caaeb3b060 (diff)
downloadCamera2-eee841b9cb6590506d65b2777c165bb94a7fb417.tar.gz
Fix trivial warning in jpegutil.h.
This flew by in the build output. There's a bunch of other warnings, but this one's easy. Forward declarations should match the actual definition in struct-vs-class-ness. Change-Id: I189cabf7846fc90f0597f16509800340dd7956e5 Test: mma
Diffstat (limited to 'jni')
-rw-r--r--jni/jpegutil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/jni/jpegutil.h b/jni/jpegutil.h
index c5f196dd6..720b9de1c 100644
--- a/jni/jpegutil.h
+++ b/jni/jpegutil.h
@@ -29,7 +29,7 @@
namespace jpegutil {
class Transform;
-class Plane;
+struct Plane;
inline int sgn(int val) { return (0 < val) - (val < 0); }