diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-16 13:49:54 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-05-16 13:50:31 +0200 |
commit | 0529ac97653bc535c5c1db832d258f661d69309c (patch) | |
tree | 48c0b6ded9d82e01d5e96f12c66e0a9b6d385618 /minion/src/network_connection.cpp | |
parent | 3ede86caf948d6e989fd056ea4f8d8c588939971 (diff) |
refactor(minion): improve network code readability
Diffstat (limited to 'minion/src/network_connection.cpp')
-rw-r--r-- | minion/src/network_connection.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/minion/src/network_connection.cpp b/minion/src/network_connection.cpp index 1f5fdae..3d20113 100644 --- a/minion/src/network_connection.cpp +++ b/minion/src/network_connection.cpp @@ -1,13 +1,16 @@ #include "network_connection.hpp" -NetworkConnection::NetworkConnection(int8_t id) noexcept : _id(id), _is_closed(false) {} +NetworkConnection::NetworkConnection(int8_t connection_id) noexcept + : _id(connection_id), _is_closed(false) +{ +} -int8_t NetworkConnection::id() const noexcept +auto NetworkConnection::id() const noexcept -> int8_t { return _id; } -bool NetworkConnection::is_closed() const noexcept +auto NetworkConnection::is_closed() const noexcept -> bool { return _is_closed; } |