modernize: Use '= default' instead of empty ctor/dtor bodies
[quassel.git] / src / common / event.h
index 02caa83..b652587 100644 (file)
@@ -33,7 +33,7 @@ class COMMON_EXPORT Event
 {
 public:
     explicit Event(EventManager::EventType type = EventManager::Invalid);
-    virtual ~Event() {}
+    virtual ~Event() = default;
 
     inline EventManager::EventType type() const { return _type; }