summaryrefslogtreecommitdiff
path: root/dnn
diff options
context:
space:
mode:
authorchatty1997-05-13 14:58:00 +0000
committerchatty1997-05-13 14:58:00 +0000
commit3ad4a8c2a9ea14e70caeea4fe170504c383e7279 (patch)
treed42ce5304dc5c110776c26bdb5f76ff9d8544a24 /dnn
parent1f31dae61d85d8ebb248f5202214f7e5e605f80f (diff)
downloadivy-league-3ad4a8c2a9ea14e70caeea4fe170504c383e7279.zip
ivy-league-3ad4a8c2a9ea14e70caeea4fe170504c383e7279.tar.gz
ivy-league-3ad4a8c2a9ea14e70caeea4fe170504c383e7279.tar.bz2
ivy-league-3ad4a8c2a9ea14e70caeea4fe170504c383e7279.tar.xz
~DnnEvent is now virtual to allow dynamic casts
Diffstat (limited to 'dnn')
-rw-r--r--dnn/Event.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dnn/Event.h b/dnn/Event.h
index fcb24ca..da03c8e 100644
--- a/dnn/Event.h
+++ b/dnn/Event.h
@@ -87,7 +87,7 @@ protected:
DnnEvent (const DnnEventType*, bool);
public:
DnnEvent (const DnnEventType*);
- ~DnnEvent ();
+virtual ~DnnEvent ();
void SetFeature (int, const void*);
void GetFeature (int, void*);
inline const DnnEventType* GetType () const { return &Type; }