From 97470659e99ea0edb7154a6f0730c786bc881762 Mon Sep 17 00:00:00 2001 From: Evgeniy Stepanov Date: Fri, 13 Jan 2012 15:33:54 +0400 Subject: [PATCH] Fix compilation with Clang. warning: extraneous template parameter list in template specialization template<> Change-Id: If3e3e1d06a018343b40ac0984dfd9ecc12629f8d --- include/utils/TypeHelpers.h | 4 ---- 1 file changed, 4 deletions(-) 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 }; };