From ace275af7f539fd623834cd3731ad7b96ac87e6f Mon Sep 17 00:00:00 2001 From: bubnikv Date: Thu, 29 Aug 2019 14:51:24 +0200 Subject: [PATCH] std::make_unique is not supported by our build servers. use Slic3r::make_unique instead --- src/slic3r/GUI/GUI_App.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 80df9c542..a01d885ec 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -723,7 +723,7 @@ bool GUI_App::load_language(wxString language, bool initial) // Release the old locales, create new locales. m_wxLocale.release(); - m_wxLocale = std::make_unique(); + m_wxLocale = Slic3r::make_unique(); m_wxLocale->Init(language_info->Language); // Override language at the active wxTranslations class (which is stored in the active m_wxLocale) // to load possibly different dictionary, for example, load Czech dictionary for Slovak language.