/* * Copyright (c) 2012-2014 Glen Joseph Fernandes * glenfe at live dot com * * 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 namespace boost { namespace detail { template struct array_base { typedef typename boost::remove_cv::type type; }; template struct array_base { typedef typename array_base::type type; }; template struct array_base { typedef typename array_base::type type; }; template struct array_total { enum { size = 1 }; }; template struct array_total { enum { size = N * array_total::size }; }; template struct array_inner; template struct array_inner { typedef T type; }; template struct array_inner { typedef T type; }; } } #endif