summaryrefslogtreecommitdiff
path: root/src/net/eathena/messageout.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/messageout.h')
-rw-r--r--src/net/eathena/messageout.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/eathena/messageout.h b/src/net/eathena/messageout.h
index 83f9fbe7f..415016403 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) override final;
+ const char *const str) final;
/**< Writes a long. */
void writeInt32(const int32_t value,
- const char *const str) override final;
+ const char *const str) final;
void writeBeingId(const BeingId value,
- const char *const str) override final;
+ const char *const str) 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 override final;
+ void expand(const size_t size) const final;
Network *mNetwork;
};