summaryrefslogtreecommitdiff
path: root/boost/tr1/array.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/tr1/array.hpp')
-rw-r--r--boost/tr1/array.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/boost/tr1/array.hpp b/boost/tr1/array.hpp
index 131d912775..1cd4534ecf 100644
--- a/boost/tr1/array.hpp
+++ b/boost/tr1/array.hpp
@@ -39,7 +39,6 @@ using ::boost::swap;
// [6.2.2.5] Tuple interface to class template array
template <class T> struct tuple_size; // forward declaration
template <int I, class T> struct tuple_element; // forward declaration
-#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
template <class T, size_t N>
struct tuple_size< ::boost::array<T, N> >
: public ::boost::integral_constant< ::std::size_t, N>{};
@@ -54,7 +53,6 @@ struct tuple_element<I, ::boost::array<T, N> >
#endif
typedef T type;
};
-#endif
template <int I, class T, size_t N>
T& get( ::boost::array<T, N>& a)
{