summaryrefslogtreecommitdiff
path: root/src/net/eathena/messagein.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/messagein.h')
-rw-r--r--src/net/eathena/messagein.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/eathena/messagein.h b/src/net/eathena/messagein.h
index e0cbe7fc2..5ba13ea9c 100644
--- a/src/net/eathena/messagein.h
+++ b/src/net/eathena/messagein.h
@@ -50,13 +50,13 @@ class MessageIn final : public Net::MessageIn
const unsigned int version);
/**< Reads a short. */
- int16_t readInt16(const char *const str) final;
+ int16_t readInt16(const char *const str) override final;
/**< Reads a long. */
- int32_t readInt32(const char *const str) final;
+ int32_t readInt32(const char *const str) override final;
- int64_t readInt64(const char *const str) final;
+ int64_t readInt64(const char *const str) override final;
- BeingId readBeingId(const char *const str) final;
+ BeingId readBeingId(const char *const str) override final;
uint16_t readId() const;
};