diff --git a/src/Magnum/Math/Test/TypeTraitsTest.cpp b/src/Magnum/Math/Test/TypeTraitsTest.cpp index e9cab72e9..bda1693e8 100644 --- a/src/Magnum/Math/Test/TypeTraitsTest.cpp +++ b/src/Magnum/Math/Test/TypeTraitsTest.cpp @@ -23,9 +23,9 @@ DEALINGS IN THE SOFTWARE. */ -#include +#include +#include #include -#include #include "Magnum/Math/Half.h" #include "Magnum/Math/Math.h" @@ -161,8 +161,9 @@ TypeTraitsTest::TypeTraitsTest() { } void TypeTraitsTest::name() { - CORRADE_COMPARE(TypeTraits::name(), std::string{"UnsignedShort"}); - CORRADE_COMPARE(TypeTraits::name(), std::string{"Float"}); + using namespace Corrade::Containers::Literals; + CORRADE_COMPARE(TypeTraits::name(), "UnsignedShort"_s); + CORRADE_COMPARE(TypeTraits::name(), "Float"_s); } void TypeTraitsTest::isScalar() {