Skip to content

Commit afa8ae3

Browse files
committed
cppcheck fixes
1 parent fde64f4 commit afa8ae3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

include/vsg/animation/AnimationGroup.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ namespace vsg
5050
void write(Output& output) const override;
5151

5252
protected:
53-
virtual ~AnimationGroup();
53+
~AnimationGroup() override;
5454
};
5555
VSG_type_name(vsg::AnimationGroup);
5656

include/vsg/animation/Joint.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ namespace vsg
5454
void write(Output& output) const override;
5555

5656
protected:
57-
virtual ~Joint();
57+
~Joint() override;
5858
};
5959
VSG_type_name(vsg::Joint);
6060

0 commit comments

Comments
 (0)