From 86850ef5d0195fb022cda7481b43496da722911c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Sat, 8 Jun 2019 15:08:24 +0200 Subject: [PATCH] NOISSUE fix macOS build, remove bundled dependencies on linux Your copy of MultiMC might stop working after this update because we no longer bundle Qt and other system libraries. Contact us at https://discord.gg/0k2zsXGNHs0fE4Wm if you need help with installing Qt. Qt 5.4.x or newer is required. --- api/logic/icons/IconUtils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/logic/icons/IconUtils.cpp b/api/logic/icons/IconUtils.cpp index 1b6d7553e..bf530c16f 100644 --- a/api/logic/icons/IconUtils.cpp +++ b/api/logic/icons/IconUtils.cpp @@ -6,14 +6,14 @@ #include namespace { -std::array validIconExtensions = { +std::array validIconExtensions = {{ "svg", "png", "ico", "gif", "jpg", "jpeg" -}; +}}; } namespace IconUtils{