From 3824190a5085b6f9724a7c6c59b0d938c81c4b85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 5 Jul 2012 16:46:06 +0200 Subject: [PATCH] Fixed comma at the end of enumeration list (GCC 4.5 noticed it). --- src/AbstractImage.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/AbstractImage.h b/src/AbstractImage.h index cdc437758..a8d9f0c5c 100644 --- a/src/AbstractImage.h +++ b/src/AbstractImage.h @@ -176,9 +176,11 @@ class MAGNUM_EXPORT AbstractImage { * Four-component RGBA, unsigned normalized, each RGB component * 5bit, alpha 1bit, 16bit total. */ - RGB5Alpha1 = GL_UNSIGNED_SHORT_5_5_5_1, + RGB5Alpha1 = GL_UNSIGNED_SHORT_5_5_5_1 #ifndef MAGNUM_TARGET_GLES + , + /** * Four-component ABGR, unsigned normalized, each RGB component * 5bit, alpha 1bit, 16bit total.