summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/buysellhandler.h8
-rw-r--r--src/net/eathena/cashshophandler.h4
-rw-r--r--src/net/eathena/charserverhandler.h3
-rw-r--r--src/net/eathena/gamehandler.h2
4 files changed, 8 insertions, 9 deletions
diff --git a/src/net/eathena/buysellhandler.h b/src/net/eathena/buysellhandler.h
index 74c9dfa67..feeb7f887 100644
--- a/src/net/eathena/buysellhandler.h
+++ b/src/net/eathena/buysellhandler.h
@@ -38,18 +38,18 @@ class BuySellHandler final : public Ea::BuySellHandler
~BuySellHandler() override final;
void requestSellList(const std::string &nick)
- const override final A_CONST;
+ const override final;
void requestBuyList(const std::string &nick)
- const override final A_CONST;
+ const override final;
void sendBuyRequest(const std::string &nick,
const ShopItem *const item,
- const int amount) const override final A_CONST;
+ const int amount) const override final;
void sendSellRequest(const std::string &nick,
const ShopItem *const item,
- const int amount) const override final A_CONST;
+ const int amount) const override final;
void close() const override final;
};
diff --git a/src/net/eathena/cashshophandler.h b/src/net/eathena/cashshophandler.h
index 904a1db55..cff900bc0 100644
--- a/src/net/eathena/cashshophandler.h
+++ b/src/net/eathena/cashshophandler.h
@@ -40,8 +40,8 @@ class CashShopHandler final : public Net::CashShopHandler
const int amount) const override final;
void buyItems(const int points,
- const STD_VECTOR<ShopItem*> &items) const override final
- A_CONST;
+ const STD_VECTOR<ShopItem*> &items) const
+ override final;
void close() const override final;
diff --git a/src/net/eathena/charserverhandler.h b/src/net/eathena/charserverhandler.h
index a71b43f23..662873e00 100644
--- a/src/net/eathena/charserverhandler.h
+++ b/src/net/eathena/charserverhandler.h
@@ -64,8 +64,7 @@ class CharServerHandler final : public Ea::CharServerHandler
bool isNeedCreatePin() const override final A_WARN_UNUSED;
- void setNewPincode(const std::string &pin) const override final
- A_CONST;
+ void setNewPincode(const std::string &pin) const override final;
/**
* Sets the character create dialog. The handler will clean up this
diff --git a/src/net/eathena/gamehandler.h b/src/net/eathena/gamehandler.h
index 4449bb6ae..2f7474cd0 100644
--- a/src/net/eathena/gamehandler.h
+++ b/src/net/eathena/gamehandler.h
@@ -47,7 +47,7 @@ class GameHandler final : public Ea::GameHandler
void ping(const int tick) const override final;
- void disconnect2() const override final A_CONST;
+ void disconnect2() const override final;
void mapLoadedEvent() const override final;