summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <mk@cm4all.com>2020-10-23 12:38:46 +0200
committerMax Kellermann <max@musicpd.org>2020-11-30 22:11:14 +0100
commit8f89e3f7f469ee46015bed786fbc76e9191a13a9 (patch)
treec7d7c180210a9bcc377a3785237181843df83218
parentfc01d11b8d63d453456f74fdd91cd15e855cecfa (diff)
lib/dbus/Values: use `using` instead of `typedef`
-rw-r--r--src/lib/dbus/Values.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dbus/Values.hxx b/src/lib/dbus/Values.hxx
index aac5b9dc4..88c27f7ff 100644
--- a/src/lib/dbus/Values.hxx
+++ b/src/lib/dbus/Values.hxx
@@ -44,7 +44,7 @@ namespace ODBus {
template<typename T>
struct BasicValue {
- typedef TypeTraits<T> Traits;
+ using Traits = TypeTraits<T>;
const T &value;
explicit constexpr BasicValue(const T &_value) noexcept