summaryrefslogtreecommitdiffstats
path: root/src/debug/event.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug/event.h')
-rw-r--r--src/debug/event.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debug/event.h b/src/debug/event.h
index 2d3751ff5..1ddcb8b55 100644
--- a/src/debug/event.h
+++ b/src/debug/event.h
@@ -21,7 +21,7 @@ namespace Debug {
class Event {
public:
- virtual ~Event() {}
+ virtual ~Event() = default;
enum Category {
CORE=0,
@@ -39,7 +39,7 @@ public:
struct PropertyPair {
public:
- PropertyPair() {}
+ PropertyPair() = default;
PropertyPair(Util::ptr_shared n, Util::ptr_shared v)
: name(n), value(v) {}
PropertyPair(char const *n, Util::ptr_shared v)