diff options
author | Petr Mrázek <peterix@gmail.com> | 2019-06-08 15:08:24 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2019-06-08 15:08:24 +0200 |
commit | 86850ef5d0195fb022cda7481b43496da722911c (patch) | |
tree | ac14014e06899c782063b31dc6268fbdb94ed728 | |
parent | 30fba4d407a8a61288735cc06df96ac4c4fe846c (diff) | |
download | MultiMC-86850ef5d0195fb022cda7481b43496da722911c.tar MultiMC-86850ef5d0195fb022cda7481b43496da722911c.tar.gz MultiMC-86850ef5d0195fb022cda7481b43496da722911c.tar.lz MultiMC-86850ef5d0195fb022cda7481b43496da722911c.tar.xz MultiMC-86850ef5d0195fb022cda7481b43496da722911c.zip |
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.
-rw-r--r-- | api/logic/icons/IconUtils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/api/logic/icons/IconUtils.cpp b/api/logic/icons/IconUtils.cpp index 1b6d7553..bf530c16 100644 --- a/api/logic/icons/IconUtils.cpp +++ b/api/logic/icons/IconUtils.cpp @@ -6,14 +6,14 @@ #include <array> namespace { -std::array<const char *, 6> validIconExtensions = { +std::array<const char *, 6> validIconExtensions = {{ "svg", "png", "ico", "gif", "jpg", "jpeg" -}; +}}; } namespace IconUtils{ |