| * Copyright (c) 2012 Glen Joseph Fernandes |
| * Distributed under the Boost Software License, |
| * Version 1.0. (See accompanying file LICENSE_1_0.txt |
| * or copy at http://boost.org/LICENSE_1_0.txt) |
| #ifndef BOOST_SMART_PTR_DETAIL_ARRAY_TRAITS_HPP |
| #define BOOST_SMART_PTR_DETAIL_ARRAY_TRAITS_HPP |
| #include <ndnboost/type_traits/remove_cv.hpp> |
| typedef typename ndnboost::remove_cv<T>::type type; |
| typedef typename array_base<T>::type type; |
| template<typename T, std::size_t N> |
| struct array_base<T[N]> { |
| typedef typename array_base<T>::type type; |
| template<typename T, std::size_t N> |
| struct array_total<T[N]> { |
| size = N * array_total<T>::size |
| struct array_inner<T[]> { |
| template<typename T, std::size_t N> |
| struct array_inner<T[N]> { |