* clutter/cogl/gl/cogl-internal.h

* clutter/cogl/gles/cogl-internal.h:
	Removes semicolon after the GE() macro since that breaks using it as a
	single statement.
This commit is contained in:
Robert Bragg 2008-11-18 16:23:40 +00:00
parent 5e9282bd79
commit 41ec02c8b5
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2008-11-18 Robert Bragg <robert@linux.intel.com>
* clutter/cogl/gl/cogl-internal.h
* clutter/cogl/gles/cogl-internal.h:
Removes semicolon after the GE() macro since that breaks using it as a
single statement.
2008-11-18 Emmanuele Bassi <ebassi@linux.intel.com>
* clutter/clutter.h: Add clutter-shader.h and

View File

@ -46,7 +46,7 @@ const char *_cogl_error_string(GLenum errorCode);
#else /* COGL_DEBUG */
#define GE(x) (x);
#define GE(x) (x)
#endif /* COGL_DEBUG */

View File

@ -70,7 +70,7 @@ const char *_cogl_error_string(GLenum errorCode);
#else /* COGL_DEBUG */
#define GE(x) (x);
#define GE(x) (x)
#endif /* COGL_DEBUG */