This code
virtual const core::matrix4& getViewMatrixAffector() const {return core::matrix4();};
results with a warning telling me "Returning reference to local temporary object"...
How to solve this warning?
As mentioned below i tried to remove the '&'...