From 186691a9db084ec971ca8b78872e1b12faf6c759 Mon Sep 17 00:00:00 2001 From: Julien Valentin Date: Tue, 29 Aug 2017 15:10:05 +0200 Subject: [PATCH] remove virtual qualifier for deprecated method --- include/osgAnimation/MorphGeometry | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osgAnimation/MorphGeometry b/include/osgAnimation/MorphGeometry index 9c87ac681..cf4b06228 100644 --- a/include/osgAnimation/MorphGeometry +++ b/include/osgAnimation/MorphGeometry @@ -144,7 +144,7 @@ namespace osgAnimation inline bool isDirty()const { return _dirty; } /** for retrocompatibility */ - virtual void transformSoftwareMethod(){(*_morphTransformImplementation.get())(*this);} + void transformSoftwareMethod(){(*_morphTransformImplementation.get())(*this);} protected: osg::ref_ptr _morphTransformImplementation;