diff options
Diffstat (limited to 'src/ClientID.hpp')
-rw-r--r-- | src/ClientID.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ClientID.hpp b/src/ClientID.hpp index 7bf8faa..0cfdb29 100644 --- a/src/ClientID.hpp +++ b/src/ClientID.hpp @@ -59,7 +59,7 @@ private: uint8_t _alsa_id{}; ///< Client ID for Type::alsa }; -static inline std::ostream& +inline std::ostream& operator<<(std::ostream& os, const ClientID& id) { switch (id.type()) { @@ -73,7 +73,7 @@ operator<<(std::ostream& os, const ClientID& id) return os; } -static inline bool +inline bool operator==(const ClientID& lhs, const ClientID& rhs) { if (lhs.type() != rhs.type()) { @@ -91,7 +91,7 @@ operator==(const ClientID& lhs, const ClientID& rhs) return false; } -static inline bool +inline bool operator<(const ClientID& lhs, const ClientID& rhs) { if (lhs.type() != rhs.type()) { |