diff --git a/include/utils/TypeHelpers.h b/include/utils/TypeHelpers.h index 7b4fb70ba..1f2c2d5fd 100644 --- a/include/utils/TypeHelpers.h +++ b/include/utils/TypeHelpers.h @@ -233,19 +233,15 @@ struct key_value_pair_t { } }; -template<> template struct trait_trivial_ctor< key_value_pair_t > { enum { value = aggregate_traits::has_trivial_ctor }; }; -template<> template struct trait_trivial_dtor< key_value_pair_t > { enum { value = aggregate_traits::has_trivial_dtor }; }; -template<> template struct trait_trivial_copy< key_value_pair_t > { enum { value = aggregate_traits::has_trivial_copy }; }; -template<> template struct trait_trivial_move< key_value_pair_t > { enum { value = aggregate_traits::has_trivial_move }; };