Commit 34ffc48c authored by cutealien's avatar cutealien

Prevent copying CDynamicMeshBuffer (it doesn't support that, so hiding copy constructor).


git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@5269 dfc29bdd-3216-0410-991c-e03cc46cb475
parent a91c279a
......@@ -104,6 +104,8 @@ namespace scene
video::SMaterial Material;
core::aabbox3d<f32> BoundingBox;
private:
CDynamicMeshBuffer(const CDynamicMeshBuffer&); // = delete in c++11, prevent copying
IVertexBuffer *VertexBuffer;
IIndexBuffer *IndexBuffer;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment