diff --git a/src/Magnum/Test/AbstractShaderProgramGLTest.cpp b/src/Magnum/Test/AbstractShaderProgramGLTest.cpp index 4ebda946d..8e5840a8a 100644 --- a/src/Magnum/Test/AbstractShaderProgramGLTest.cpp +++ b/src/Magnum/Test/AbstractShaderProgramGLTest.cpp @@ -105,7 +105,7 @@ void AbstractShaderProgramGLTest::construct() { void AbstractShaderProgramGLTest::constructCopy() { #ifndef CORRADE_GCC44_COMPATIBILITY - CORRADE_VERIFY(!(std::is_constructible{})); + CORRADE_VERIFY(!(std::is_constructible::value)); /* GCC 4.6 doesn't have std::is_assignable */ #ifndef CORRADE_GCC46_COMPATIBILITY CORRADE_VERIFY(!(std::is_assignable{})); diff --git a/src/Magnum/Test/FramebufferGLTest.cpp b/src/Magnum/Test/FramebufferGLTest.cpp index 3ba5e7c90..b4081a3a3 100644 --- a/src/Magnum/Test/FramebufferGLTest.cpp +++ b/src/Magnum/Test/FramebufferGLTest.cpp @@ -147,7 +147,7 @@ void FramebufferGLTest::construct() { void FramebufferGLTest::constructCopy() { #ifndef CORRADE_GCC44_COMPATIBILITY - CORRADE_VERIFY(!(std::is_constructible{})); + CORRADE_VERIFY(!(std::is_constructible::value)); /* GCC 4.6 doesn't have std::is_assignable */ #ifndef CORRADE_GCC46_COMPATIBILITY CORRADE_VERIFY(!(std::is_assignable{})); diff --git a/src/Magnum/Test/MeshGLTest.cpp b/src/Magnum/Test/MeshGLTest.cpp index 9ab3849c7..13b788829 100644 --- a/src/Magnum/Test/MeshGLTest.cpp +++ b/src/Magnum/Test/MeshGLTest.cpp @@ -190,7 +190,7 @@ void MeshGLTest::construct() { void MeshGLTest::constructCopy() { #ifndef CORRADE_GCC44_COMPATIBILITY - CORRADE_VERIFY(!(std::is_constructible{})); + CORRADE_VERIFY(!(std::is_constructible::value)); /* GCC 4.6 doesn't have std::is_assignable */ #ifndef CORRADE_GCC46_COMPATIBILITY CORRADE_VERIFY(!(std::is_assignable{}));