lib/dbus/Values: use `using` instead of `typedef`
This commit is contained in:
parent
fc01d11b8d
commit
8f89e3f7f4
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue