1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 15:29:55 +00:00

Disable copy constructor and operator= in PartHolder

This commit is contained in:
scrawl 2015-11-11 01:47:11 +01:00
parent fc93dc6195
commit c62c1693e9

View file

@ -61,6 +61,9 @@ public:
private:
osg::ref_ptr<osg::Node> mNode;
void operator= (const PartHolder&);
PartHolder(const PartHolder&);
};
typedef boost::shared_ptr<PartHolder> PartHolderPtr;