diff --git a/src/Text/Test/AbstractFontConverterTest.cpp b/src/Text/Test/AbstractFontConverterTest.cpp index e27626cac..5f0187117 100644 --- a/src/Text/Test/AbstractFontConverterTest.cpp +++ b/src/Text/Test/AbstractFontConverterTest.cpp @@ -213,7 +213,7 @@ void AbstractFontConverterTest::importGlyphCacheFromSingleData() { /* doImportFromData() should call doImportFromSingleData() */ SingleGlyphCacheDataImporter importer; const unsigned char data[] = {0xa5}; - GlyphCache* cache = importer.importGlyphCacheFromData({{{}, data}}); + GlyphCache* cache = importer.importGlyphCacheFromData(std::vector>>{{{}, data}}); CORRADE_COMPARE(cache, reinterpret_cast(0xdeadbeef)); } diff --git a/src/Text/Test/AbstractFontTest.cpp b/src/Text/Test/AbstractFontTest.cpp index ae5bf4932..cfbe8d63f 100644 --- a/src/Text/Test/AbstractFontTest.cpp +++ b/src/Text/Test/AbstractFontTest.cpp @@ -77,7 +77,7 @@ void AbstractFontTest::openSingleData() { SingleDataFont font; const unsigned char data[] = {0xa5}; CORRADE_VERIFY(!font.isOpened()); - font.openData({{{}, data}}, 3.0f); + font.openData(std::vector>>{{{}, data}}, 3.0f); CORRADE_VERIFY(font.isOpened()); } diff --git a/src/Text/Test/GlyphCacheGLTest.cpp b/src/Text/Test/GlyphCacheGLTest.cpp index 7578f57b5..63b83feab 100644 --- a/src/Text/Test/GlyphCacheGLTest.cpp +++ b/src/Text/Test/GlyphCacheGLTest.cpp @@ -84,7 +84,7 @@ void GlyphCacheGLTest::reserve() { Text::GlyphCache cache(Vector2i(236)); /* Verify that this works for "empty" cache */ - CORRADE_VERIFY(!cache.reserve({{5, 3}}).empty()); + CORRADE_VERIFY(!cache.reserve(std::vector{{5, 3}}).empty()); } }}}