From e3168b6a026a82f7df4e1fe8f717f73381876d5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 5 Dec 2013 00:33:56 +0100 Subject: [PATCH] MSVC 2013 compatibility: no user-defined literals. --- src/Math/Test/AngleTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Math/Test/AngleTest.cpp b/src/Math/Test/AngleTest.cpp index 903207d8a..44ec81e78 100644 --- a/src/Math/Test/AngleTest.cpp +++ b/src/Math/Test/AngleTest.cpp @@ -104,7 +104,7 @@ void AngleTest::construct() { } void AngleTest::literals() { - #ifndef CORRADE_GCC46_COMPATIBILITY + #if !defined(CORRADE_GCC46_COMPATIBILITY) && !defined(CORRADE_MSVC2013_COMPATIBILITY) #ifndef MAGNUM_TARGET_GLES constexpr auto a = 25.0_deg; CORRADE_VERIFY((std::is_same::value));