summaryrefslogtreecommitdiff
path: root/src/net/tmwa/chathandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa/chathandler.h')
-rw-r--r--src/net/tmwa/chathandler.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/net/tmwa/chathandler.h b/src/net/tmwa/chathandler.h
index a21692c9..9f838b2c 100644
--- a/src/net/tmwa/chathandler.h
+++ b/src/net/tmwa/chathandler.h
@@ -31,7 +31,7 @@
namespace TmwAthena {
-class ChatHandler : public MessageHandler, public Net::ChatHandler
+class ChatHandler final : public MessageHandler, public Net::ChatHandler
{
public:
ChatHandler();
@@ -67,8 +67,7 @@ class ChatHandler : public MessageHandler, public Net::ChatHandler
bool whoSupported() const override { return false; }
private:
- using WhisperQueue = std::queue<std::string>;
- WhisperQueue mSentWhispers;
+ std::queue<std::string> mSentWhispers;
};
} // namespace TmwAthena