Browse Source

Don't use virtual when reimplementing virtual function.

pull/279/head
Vladimír Vondruš 14 years ago
parent
commit
192831b576
  1. 2
      src/Camera.h

2
src/Camera.h

@ -151,7 +151,7 @@ class MAGNUM_EXPORT Camera: public Object {
virtual void draw();
/* It's here just so the function is not hidden by draw() */
virtual void draw(const Matrix4& transformationMatrix, Camera* camera) {}
void draw(const Matrix4& transformationMatrix, Camera* camera) {}
protected:
/**

Loading…
Cancel
Save