Fixed compilation on OSX

This commit is contained in:
bubnikv 2017-06-13 12:09:49 +02:00
parent a4992602ee
commit f7831240e1
5 changed files with 3 additions and 12 deletions

View file

@ -14,6 +14,7 @@
namespace Slic3r {
class Model;
class ModelInstance;
class ModelMaterial;
class ModelObject;
@ -38,7 +39,7 @@ public:
// Dynamic configuration storage for the object specific configuration values, overriding the global configuration.
DynamicPrintConfig config;
Model* get_model() const { return m_model; };
Model* get_model() const { return m_model; }
void apply(const t_model_material_attributes &attributes)
{ this->attributes.insert(attributes.begin(), attributes.end()); }