]> git.tdb.fi Git - libs/net.git/blobdiff - source/net/communicator.cpp
Use the override specifier when overriding
[libs/net.git] / source / net / communicator.cpp
index 07a8494247758732e8e82597b621ae07b7f1fc21..05ef0ea86e0f4e9a6f6710864537a800e61ff663 100644 (file)
@@ -1,6 +1,5 @@
 #include <cstring>
 #include "communicator.h"
-#include "protocol_impl.h"
 #include "streamsocket.h"
 
 using namespace std;
@@ -11,7 +10,7 @@ using namespace Msp::Net;
 
 struct Handshake
 {
-       Msp::UInt64 hash;
+       uint64_t hash;
 };
 
 
@@ -31,12 +30,12 @@ HandshakeProtocol::HandshakeProtocol():
 class HandshakeReceiver: public PacketReceiver<Handshake>
 {
 private:
-       Msp::UInt64 hash;
+       uint64_t hash;
 
 public:
        HandshakeReceiver();
-       Msp::UInt64 get_hash() const { return hash; }
-       virtual void receive(const Handshake &);
+       uint64_t get_hash() const { return hash; }
+       void receive(const Handshake &) override;
 };
 
 HandshakeReceiver::HandshakeReceiver():