summaryrefslogtreecommitdiff
path: root/src/clientsimpleobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/clientsimpleobject.h')
-rw-r--r--src/clientsimpleobject.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/clientsimpleobject.h b/src/clientsimpleobject.h
index 3e7704757..6cdeaeff9 100644
--- a/src/clientsimpleobject.h
+++ b/src/clientsimpleobject.h
@@ -29,8 +29,9 @@ protected:
public:
bool m_to_be_removed = false;
- ClientSimpleObject() {}
- virtual ~ClientSimpleObject() {}
+ ClientSimpleObject() = default;
+ virtual ~ClientSimpleObject() = default;
+
virtual void step(float dtime) {}
};