diff options
author | David 'Digit' Turner <digit@google.com> | 2014-10-30 21:32:28 +0100 |
---|---|---|
committer | David 'Digit' Turner <digit@google.com> | 2014-10-30 21:32:28 +0100 |
commit | 223a765dbc9b6bf6a20fff842c1fdf2cbf7fe529 (patch) | |
tree | 1f062c81fab0405ecadcecdd150ed9d4adb08fc6 /opengl/system/renderControl_enc | |
parent | a4d0e1cac30c7460d224cf5449d25e9e2f50b1c0 (diff) | |
download | android_device_generic_goldfish-223a765dbc9b6bf6a20fff842c1fdf2cbf7fe529.tar.gz android_device_generic_goldfish-223a765dbc9b6bf6a20fff842c1fdf2cbf7fe529.tar.bz2 android_device_generic_goldfish-223a765dbc9b6bf6a20fff842c1fdf2cbf7fe529.zip |
opengl: Remove compiler warnings.
Simply remove multiple compiler warnings about unused parameter.
Note that this modifies three auto-generated files, which will
require fixing the 'emugen' program in the future.
Change-Id: I19edce7c6480770b893d033ed6b1c65744091d62
Diffstat (limited to 'opengl/system/renderControl_enc')
-rw-r--r-- | opengl/system/renderControl_enc/renderControl_client_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/system/renderControl_enc/renderControl_client_context.h b/opengl/system/renderControl_enc/renderControl_client_context.h index 6b0d82f..4c71d89 100644 --- a/opengl/system/renderControl_enc/renderControl_client_context.h +++ b/opengl/system/renderControl_enc/renderControl_client_context.h @@ -39,7 +39,7 @@ struct renderControl_client_context_t { typedef renderControl_client_context_t *CONTEXT_ACCESSOR_TYPE(void); static void setContextAccessor(CONTEXT_ACCESSOR_TYPE *f); int initDispatchByName( void *(*getProc)(const char *name, void *userData), void *userData); - virtual void setError(unsigned int error){}; + virtual void setError(unsigned int error){ (void)error; }; virtual unsigned int getError(){ return 0; }; }; |