Graphics/Renderable: Fix copy constructor/operator

Former-commit-id: eb376d49285cefa1f0317719a47e41f62a11aae5
This commit is contained in:
Lynix
2015-05-26 14:13:24 +02:00
parent b075d05d82
commit be335c3e81
2 changed files with 14 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ class NAZARA_API NzRenderable : public NzRefCounted
{
public:
NzRenderable() = default;
NzRenderable(const NzRenderable& renderable) = default;
NzRenderable(const NzRenderable& renderable);
virtual ~NzRenderable();
void EnsureBoundingVolumeUpdated() const;
@@ -40,7 +40,7 @@ class NAZARA_API NzRenderable : public NzRefCounted
virtual const NzBoundingVolumef& GetBoundingVolume() const;
virtual void UpdateBoundingVolume(NzBoundingVolumef* boundingVolume, const NzMatrix4f& transformMatrix) const;
NzRenderable& operator=(const NzRenderable& renderable) = default;
NzRenderable& operator=(const NzRenderable& renderable);
protected:
virtual void MakeBoundingVolume() const = 0;