Merge "use modern construct '= default' for special functions." into devel/master
[platform/core/uifw/dali-core.git] / dali / internal / event / common / complete-notification-interface.h
index 40ae686..d802d4f 100644 (file)
@@ -37,14 +37,12 @@ protected:
   /**
    * Constructor, not to be directly instantiated.
    */
-  CompleteNotificationInterface()
-  {}
+  CompleteNotificationInterface() = default;
 
   /**
    * Virtual destructor as this is an interface, no deletion through this interface though.
    */
-  virtual ~CompleteNotificationInterface()
-  {}
+  virtual ~CompleteNotificationInterface() = default;
 
 public: