From d4d86ae54ebe73ad481f84145002ed8fb425d34f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 29 Nov 2020 11:25:44 +0100 Subject: Fix build on MacOS --- src/Patchage.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Patchage.cpp b/src/Patchage.cpp index b5123b6..641714a 100644 --- a/src/Patchage.cpp +++ b/src/Patchage.cpp @@ -311,7 +311,8 @@ Patchage::Patchage(int argc, char** argv) _about_win->set_logo(Gdk::Pixbuf::create_from_file( bundle_location() + "/Resources/Patchage.icns")); } catch (const Glib::Exception& e) { - _log.error(fmt::format("Failed to set logo ({})", e.what())); + _log.error( + fmt::format("Failed to set logo ({})", std::string(e.what()))); } #endif -- cgit v1.2.1