From 1437043c624abae06ba1a17704800c044958f8ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 7 Nov 2012 21:25:30 +0100 Subject: [PATCH] Fixed compiler warning. --- src/Context.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Context.h b/src/Context.h index f896975f0..d9f6decd2 100644 --- a/src/Context.h +++ b/src/Context.h @@ -70,7 +70,7 @@ enum class Version: GLint { * equivalent to @ref Version "Version::GL430". */ #ifndef MAGNUM_TARGET_GLES - GLES300 = 430, + GLES300 = 430 #else GLES300 = 300 #endif