diff options
| author | 2012-01-13 15:16:59 -0800 | |
|---|---|---|
| committer | 2012-01-13 15:16:59 -0800 | |
| commit | 4bedb481036fbc6b72e5c0c620b569b508d3be16 (patch) | |
| tree | 0642e5f28cc560e6ad9e1f5122faf31c33b1957c | |
| parent | dfef19940f2af5c043e0c6fb49909f093b8ff96b (diff) | |
| parent | 0922328270d2ec55a7f9407dfaac2d482e3f59cb (diff) | |
Merge "Fix compilation with Clang."
| -rw-r--r-- | include/utils/TypeHelpers.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/utils/TypeHelpers.h b/include/utils/TypeHelpers.h index 7b4fb70ba641..1f2c2d5fda3c 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 }; }; |