lib/dbus/Values: use using instead of typedef

This commit is contained in:
Max Kellermann 2020-10-23 12:38:46 +02:00 committed by Max Kellermann
parent fc01d11b8d
commit 8f89e3f7f4

View File

@ -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