diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-01-09 04:41:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-01-09 04:41:50 +0300 |
commit | 62471b26135021d75f1b9255ab613746ae2ad67a (patch) | |
tree | 6b5e8b29c6c9432ba03ce2fe06a5df4dc19e2ca3 /src/net/tmwa/auctionhandler.h | |
parent | e6704b8b023f5507be7b1bc5ba0b564e30e6e30f (diff) | |
download | mv-62471b26135021d75f1b9255ab613746ae2ad67a.tar.gz mv-62471b26135021d75f1b9255ab613746ae2ad67a.tar.bz2 mv-62471b26135021d75f1b9255ab613746ae2ad67a.tar.xz mv-62471b26135021d75f1b9255ab613746ae2ad67a.zip |
Remove useless A_CONST attributes.
Diffstat (limited to 'src/net/tmwa/auctionhandler.h')
-rw-r--r-- | src/net/tmwa/auctionhandler.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/net/tmwa/auctionhandler.h b/src/net/tmwa/auctionhandler.h index 1d5b8771e..28ec0ae71 100644 --- a/src/net/tmwa/auctionhandler.h +++ b/src/net/tmwa/auctionhandler.h @@ -34,30 +34,30 @@ class AuctionHandler final : public Net::AuctionHandler ~AuctionHandler() override final; - void cancelReg() const override final A_CONST; + void cancelReg() const override final; void setItem(const Item *const item, - const int amount) const override final A_CONST; + const int amount) const override final; void reg(const int currentPrice, const int maxPrice, - const int hours) const override final A_CONST; + const int hours) const override final; - void cancel(const int auctionId) const override final A_CONST; + void cancel(const int auctionId) const override final; - void close(const int auctionId) const override final A_CONST; + void close(const int auctionId) const override final; void bid(const int auctionId, - const int money) const override final A_CONST; + const int money) const override final; void search(const AuctionSearchTypeT type, const int auctionId, const std::string &text, - const int page) const override final A_CONST; + const int page) const override final; - void buy() const override final A_CONST; + void buy() const override final; - void sell() const override final A_CONST; + void sell() const override final; }; } // namespace TmwAthena |