From d6d69c40adce55c6a05a92acd88774589fce2bae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 19 Mar 2013 16:35:21 +0100 Subject: [PATCH] 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. --- src/AbstractImage.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AbstractImage.h b/src/AbstractImage.h index 0274d5846..36f3fc51c 100644 --- a/src/AbstractImage.h +++ b/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,