aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/tests/libsample/objecttype.h
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken2/tests/libsample/objecttype.h')
-rw-r--r--sources/shiboken2/tests/libsample/objecttype.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/shiboken2/tests/libsample/objecttype.h b/sources/shiboken2/tests/libsample/objecttype.h
index eae95b3b1..4d85daeff 100644
--- a/sources/shiboken2/tests/libsample/objecttype.h
+++ b/sources/shiboken2/tests/libsample/objecttype.h
@@ -168,8 +168,8 @@ class LIBSAMPLE_API ObjectTypeDerived: public ObjectType, public OtherBase {
public:
ObjectTypeDerived(): ObjectType(), OtherBase() {};
- virtual bool event(Event* event);
- virtual ~ObjectTypeDerived();
+ bool event(Event* event) override;
+ ~ObjectTypeDerived() override;
};
#endif // OBJECTTYPE_H