From 742fdf7d20936cd71a009f96dfb94610b336bc97 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Thu, 10 Aug 2017 16:14:30 +0200 Subject: use c++14 features --- options/value-traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'options/value-traits.hpp') 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 struct default_value_traits { - using element_type = remove_qualifiers; + using element_type = std::decay_t; using value_type = u; static inline value_type from_value(const value_type& val, const value_type&) { return val; } -- cgit v1.2.3