Browse Source

Fix comma at the end of enumeration list.

I know C99/C++11 allows this, but for me this is as bad as wrong
whitespaces or superfluous `;` characters.
pull/278/head
Vladimír Vondruš 13 years ago
parent
commit
d6d69c40ad
  1. 2
      src/AbstractImage.h

2
src/AbstractImage.h

@ -431,7 +431,7 @@ class MAGNUM_EXPORT AbstractImage {
* @requires_gles30 %Extension @es_extension{OES,packed_depth_stencil}
*/
#ifdef MAGNUM_TARGET_GLES2
UnsignedInt248 = GL_UNSIGNED_INT_24_8_OES,
UnsignedInt248 = GL_UNSIGNED_INT_24_8_OES
#else
UnsignedInt248 = GL_UNSIGNED_INT_24_8,

Loading…
Cancel
Save