mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-18 21:49:04 -07:00
Trying to fix some Linux & OSX compilation issues.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user