From e48edf291d72b46b71c6090df8279c3e3754f5f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 17 Mar 2013 22:19:57 +0100 Subject: [PATCH] GCC 4.4 compatibility: various lack-of-auto-conversion issues. --- src/Test/AbstractShaderProgramTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Test/AbstractShaderProgramTest.cpp b/src/Test/AbstractShaderProgramTest.cpp index 4dc11e31b..e6763936f 100644 --- a/src/Test/AbstractShaderProgramTest.cpp +++ b/src/Test/AbstractShaderProgramTest.cpp @@ -67,7 +67,7 @@ AbstractShaderProgramTest::AbstractShaderProgramTest() { void AbstractShaderProgramTest::attributeScalar() { typedef AbstractShaderProgram::Attribute<3, Float> Attribute; - CORRADE_COMPARE(Attribute::Location, 3); + CORRADE_COMPARE(Int(Attribute::Location), 3); /* Default constructor */ Attribute a;