diff options
Diffstat (limited to 'minion/src/network_connection.hpp')
-rw-r--r-- | minion/src/network_connection.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/minion/src/network_connection.hpp b/minion/src/network_connection.hpp index 89094b8..4cefb39 100644 --- a/minion/src/network_connection.hpp +++ b/minion/src/network_connection.hpp @@ -5,11 +5,11 @@ class NetworkConnection { public: - NetworkConnection(int8_t id) noexcept; + explicit NetworkConnection(int8_t connection_id) noexcept; - int8_t id() const noexcept; + auto id() const noexcept -> int8_t; - bool is_closed() const noexcept; + auto is_closed() const noexcept -> bool; void set_is_closed(bool is_closed) noexcept; |