summaryrefslogtreecommitdiffstats
path: root/opengl/libs
diff options
context:
space:
mode:
authorBernhard Rosenkränzer <Bernhard.Rosenkranzer@linaro.org>2014-11-17 21:12:15 +0100
committerBernhard Rosenkränzer <Bernhard.Rosenkranzer@linaro.org>2014-11-17 21:12:15 +0100
commit9f425914db84a3dd9e011ae0b1cb0bd2da6b6720 (patch)
tree3c93b6e18fe38bf97d5ff127c41bacf7d87e0acc /opengl/libs
parent55f71bc0800b9ec7a779c5d30d5a90e074c2526b (diff)
downloadframeworks_native-9f425914db84a3dd9e011ae0b1cb0bd2da6b6720.zip
frameworks_native-9f425914db84a3dd9e011ae0b1cb0bd2da6b6720.tar.gz
frameworks_native-9f425914db84a3dd9e011ae0b1cb0bd2da6b6720.tar.bz2
Fix class vs. struct mismatch
egl_connection_t is a struct - shouldn't be forward-declared as a class Change-Id: I39f5d9bff9fc64f4694fb2bef7e4afa131b449cc Signed-off-by: Bernhard Rosenkränzer <Bernhard.Rosenkranzer@linaro.org>
Diffstat (limited to 'opengl/libs')
-rw-r--r--opengl/libs/EGL/egl_display.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/libs/EGL/egl_display.h b/opengl/libs/EGL/egl_display.h
index 87f27f8..0a6e425 100644
--- a/opengl/libs/EGL/egl_display.h
+++ b/opengl/libs/EGL/egl_display.h
@@ -39,7 +39,7 @@ namespace android {
class egl_object_t;
class egl_context_t;
-class egl_connection_t;
+struct egl_connection_t;
// ----------------------------------------------------------------------------