summaryrefslogtreecommitdiffstats
path: root/src/ClientID.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ClientID.hpp')
-rw-r--r--src/ClientID.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ClientID.hpp b/src/ClientID.hpp
index 665c237..d58c5ee 100644
--- a/src/ClientID.hpp
+++ b/src/ClientID.hpp
@@ -61,14 +61,14 @@ private:
assert(_type == Type::jack);
}
- ClientID(const Type type, uint8_t alsa_id)
+ ClientID(const Type type, const uint8_t alsa_id)
: _type{type}
, _alsa_id{alsa_id}
{
assert(_type == Type::alsa);
}
- Type _type; ///< Type that determines which field is active
+ Type _type; ///< Determines which field is active
std::string _jack_name{}; ///< Client name for Type::jack
uint8_t _alsa_id{}; ///< Client ID for Type::alsa
};