From b42999cc111ccc12f329a953328141264936ba66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 3 Jul 2013 19:27:56 +0200 Subject: [PATCH] Text: don't use explicit constructor implicitly. Spotted by Clang. --- src/Text/Test/AbstractFontConverterTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Text/Test/AbstractFontConverterTest.cpp b/src/Text/Test/AbstractFontConverterTest.cpp index e27626cac..5aedd2830 100644 --- a/src/Text/Test/AbstractFontConverterTest.cpp +++ b/src/Text/Test/AbstractFontConverterTest.cpp @@ -72,7 +72,7 @@ void AbstractFontConverterTest::convertGlyphs() { Containers::Array doExportFontToSingleData(AbstractFont*, GlyphCache*, const std::u32string& characters) const override { this->characters = characters; - return {}; + return nullptr; } std::u32string& characters;