diff options
Diffstat (limited to 'src/net/eathena/messageout.h')
-rw-r--r-- | src/net/eathena/messageout.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/eathena/messageout.h b/src/net/eathena/messageout.h index 415016403..83f9fbe7f 100644 --- a/src/net/eathena/messageout.h +++ b/src/net/eathena/messageout.h @@ -49,14 +49,14 @@ class MessageOut final : public Net::MessageOut /**< Writes a short. */ void writeInt16(const int16_t value, - const char *const str) final; + const char *const str) override final; /**< Writes a long. */ void writeInt32(const int32_t value, - const char *const str) final; + const char *const str) override final; void writeBeingId(const BeingId value, - const char *const str) final; + const char *const str) override final; /** * Encodes coordinates and direction in 3 bytes. @@ -70,7 +70,7 @@ class MessageOut final : public Net::MessageOut { mPos = 0; } private: - void expand(const size_t size) const final; + void expand(const size_t size) const override final; Network *mNetwork; }; |