diff --git a/src/Plugins/MagnumFont/MagnumFont.cpp b/src/Plugins/MagnumFont/MagnumFont.cpp index 4bfd97c61..f43ea8b24 100644 --- a/src/Plugins/MagnumFont/MagnumFont.cpp +++ b/src/Plugins/MagnumFont/MagnumFont.cpp @@ -148,7 +148,7 @@ std::pair MagnumFont::doOpenFile(const std::string& filename, Floa std::pair MagnumFont::openInternal(Utility::Configuration&& conf, Trade::ImageData2D&& image) { /* Everything okay, save the data internally */ - _opened = new Data{std::move(conf), std::move(image), {}, {}}; + _opened = new Data{std::move(conf), std::move(image), std::unordered_map{}, {}}; /* Glyph advances */ const std::vector glyphs = _opened->conf.groups("glyph");