summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugenis@google.com>2012-01-13 15:33:54 +0400
committerEvgeniy Stepanov <eugenis@google.com>2012-01-13 15:33:54 +0400
commit0922328270d2ec55a7f9407dfaac2d482e3f59cb (patch)
tree78372601dfa4e46926e1d65af7186b962752047f /include
parente00274a5ab8d16d1050adda84412016c01a469b3 (diff)
downloadframeworks_base-0922328270d2ec55a7f9407dfaac2d482e3f59cb.zip
frameworks_base-0922328270d2ec55a7f9407dfaac2d482e3f59cb.tar.gz
frameworks_base-0922328270d2ec55a7f9407dfaac2d482e3f59cb.tar.bz2
Fix compilation with Clang.
warning: extraneous template parameter list in template specialization template<> Change-Id: If3e3e1d06a018343b40ac0984dfd9ecc12629f8d
Diffstat (limited to 'include')
-rw-r--r--include/utils/TypeHelpers.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/utils/TypeHelpers.h b/include/utils/TypeHelpers.h
index 7b4fb70..1f2c2d5 100644
--- a/include/utils/TypeHelpers.h
+++ b/include/utils/TypeHelpers.h
@@ -233,19 +233,15 @@ struct key_value_pair_t {
}
};
-template<>
template <typename K, typename V>
struct trait_trivial_ctor< key_value_pair_t<K, V> >
{ enum { value = aggregate_traits<K,V>::has_trivial_ctor }; };
-template<>
template <typename K, typename V>
struct trait_trivial_dtor< key_value_pair_t<K, V> >
{ enum { value = aggregate_traits<K,V>::has_trivial_dtor }; };
-template<>
template <typename K, typename V>
struct trait_trivial_copy< key_value_pair_t<K, V> >
{ enum { value = aggregate_traits<K,V>::has_trivial_copy }; };
-template<>
template <typename K, typename V>
struct trait_trivial_move< key_value_pair_t<K, V> >
{ enum { value = aggregate_traits<K,V>::has_trivial_move }; };