diff --git a/module/Library/Net.hpp b/module/Library/Net.hpp index fe0e6973..dec3a541 100644 --- a/module/Library/Net.hpp +++ b/module/Library/Net.hpp @@ -272,14 +272,6 @@ struct WebSocketClient : public SqChainedInstances< WebSocketClient > */ WebSocketClient & operator = (WebSocketClient &&) = delete; - /* -------------------------------------------------------------------------------------------- - * Retrieve the associated user tag. - */ - SQMOD_NODISCARD const String & GetTag() const - { - return mTag; - } - /* -------------------------------------------------------------------------------------------- * Return whether the associated connection handle is valid. */ @@ -297,6 +289,14 @@ struct WebSocketClient : public SqChainedInstances< WebSocketClient > return mClosing.load(); } + /* -------------------------------------------------------------------------------------------- + * Retrieve the associated user tag. + */ + SQMOD_NODISCARD const String & GetTag() const + { + return mTag; + } + /* -------------------------------------------------------------------------------------------- * Modify the associated user tag. */