mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-15 02:37:51 -06:00
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:
parent
8add843ee8
commit
28c929f14d
2 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue