mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-13 09:47:58 -06:00
Trying to fix some Linux & OSX compilation issues.
This commit is contained in:
parent
211d1ee1e3
commit
7c732c7482
2 changed files with 3 additions and 1 deletions
|
@ -555,7 +555,8 @@ template<typename T> std::shared_ptr<const T>& ImmutableObjectHistory<T>::share
|
|||
std::istringstream iss(m_serialized);
|
||||
{
|
||||
Slic3r::UndoRedo::InputArchive archive(stack, iss);
|
||||
std::unique_ptr<std::remove_const<T>::type> mesh(new std::remove_const<T>::type());
|
||||
typedef typename std::remove_const<T>::type Type;
|
||||
std::unique_ptr<Type> mesh(new Type());
|
||||
archive(*mesh.get());
|
||||
m_shared_object = std::move(mesh);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue