Replaced UTF8 characters in string literals with \uxxxx.

Replaced std::make_unique with Slic3r::make_unique to support old C++11
compilers.
This commit is contained in:
bubnikv 2018-01-21 21:42:06 +01:00
parent 8add843ee8
commit 28c929f14d
2 changed files with 6 additions and 6 deletions

View file

@ -86,7 +86,7 @@ public:
template<class T>
static t_field Create(wxWindow* parent, const ConfigOptionDef& opt, const t_config_option_key& id) // interface for creating shared objects
{
auto p = std::make_unique<T>(parent, opt, id);
auto p = Slic3r::make_unique<T>(parent, opt, id);
p->PostInitialize();
return std::move(p); //!p;
}