diff --git a/src/Magnum/Test/TransformFeedbackGLTest.cpp b/src/Magnum/Test/TransformFeedbackGLTest.cpp index b68858014..f0cc7df55 100644 --- a/src/Magnum/Test/TransformFeedbackGLTest.cpp +++ b/src/Magnum/Test/TransformFeedbackGLTest.cpp @@ -77,11 +77,15 @@ void TransformFeedbackGLTest::construct() { } void TransformFeedbackGLTest::constructCopy() { + #ifndef CORRADE_GCC44_COMPATIBILITY CORRADE_VERIFY(!(std::is_constructible::value)); /* GCC 4.6 doesn't have std::is_assignable */ #ifndef CORRADE_GCC46_COMPATIBILITY CORRADE_VERIFY(!(std::is_assignable{})); #endif + #else + CORRADE_SKIP("Type traits needed to test this are not available on GCC 4.4."); + #endif } void TransformFeedbackGLTest::constructMove() {