X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/9701b7ab4dc4cd709ad4dcaa750fc0021f15e231..9b3f8c7252b92a7b32996aa3c2b5e5c16361c82d:/include/stg/notifer.h

diff --git a/include/stg/notifer.h b/include/stg/notifer.h
index 57f9928e..6f213328 100644
--- a/include/stg/notifer.h
+++ b/include/stg/notifer.h
@@ -12,7 +12,7 @@ template <typename varParamType>
 class PROPERTY_NOTIFIER_BASE
 {
 public:
-    virtual      ~PROPERTY_NOTIFIER_BASE(){};
+    virtual      ~PROPERTY_NOTIFIER_BASE(){}
     virtual void Notify(const varParamType & oldValue, const varParamType & newValue) = 0;
 };
 //-----------------------------------------------------------------------------
@@ -20,7 +20,7 @@ template <typename varParamType>
 class NOTIFIER_BASE
 {
 public:
-    virtual      ~NOTIFIER_BASE(){};
+    virtual      ~NOTIFIER_BASE(){}
     virtual void Notify(const varParamType & value) = 0;
 };
 //-----------------------------------------------------------------------------