diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-08-10 16:14:30 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-08-14 19:19:59 +0200 |
commit | 742fdf7d20936cd71a009f96dfb94610b336bc97 (patch) | |
tree | 600932d0866bbaf43647ee59f8826b2f35dd6fe1 /options/value-traits.hpp | |
parent | 07f16d4ff648fee65cb3f7aaf313e9616179e9d0 (diff) |
use c++14 features
Diffstat (limited to 'options/value-traits.hpp')
-rw-r--r-- | options/value-traits.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options/value-traits.hpp b/options/value-traits.hpp index cf12649c..8a497aca 100644 --- a/options/value-traits.hpp +++ b/options/value-traits.hpp @@ -13,7 +13,7 @@ namespace detail { template<typename t, typename u = t, typename Enable = void> struct default_value_traits { - using element_type = remove_qualifiers<t>; + using element_type = std::decay_t<t>; using value_type = u; static inline value_type from_value(const value_type& val, const value_type&) { return val; } |