aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/CommandHandlerFunctor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/CommandHandlerFunctor.hpp')
-rw-r--r--src/profiling/CommandHandlerFunctor.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/profiling/CommandHandlerFunctor.hpp b/src/profiling/CommandHandlerFunctor.hpp
index a9a59c145f..2e1e05fd32 100644
--- a/src/profiling/CommandHandlerFunctor.hpp
+++ b/src/profiling/CommandHandlerFunctor.hpp
@@ -18,12 +18,15 @@ namespace profiling
class CommandHandlerFunctor
{
public:
- CommandHandlerFunctor(uint32_t packetId, uint32_t version) : m_PacketId(packetId), m_Version(version) {};
+ CommandHandlerFunctor(uint32_t packetId, uint32_t version)
+ : m_PacketId(packetId)
+ , m_Version(version)
+ {}
uint32_t GetPacketId() const;
uint32_t GetVersion() const;
- virtual void operator()(const Packet& packet) {};
+ virtual void operator()(const Packet& packet) {}
private:
uint32_t m_PacketId;