diff options
Diffstat (limited to 'src/PortID.hpp')
-rw-r--r-- | src/PortID.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/PortID.hpp b/src/PortID.hpp index e9011c9..846a447 100644 --- a/src/PortID.hpp +++ b/src/PortID.hpp @@ -101,7 +101,7 @@ private: bool _alsa_is_input{}; ///< Input flag for Type::alsa }; -static inline std::ostream& +inline std::ostream& operator<<(std::ostream& os, const PortID& id) { switch (id.type()) { @@ -116,7 +116,7 @@ operator<<(std::ostream& os, const PortID& id) return os; } -static inline bool +inline bool operator==(const PortID& lhs, const PortID& rhs) { if (lhs.type() != rhs.type()) { @@ -137,7 +137,7 @@ operator==(const PortID& lhs, const PortID& rhs) return false; } -static inline bool +inline bool operator<(const PortID& lhs, const PortID& rhs) { if (lhs.type() != rhs.type()) { |