/*============================================================================= Copyright (c) 2011-2014 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_DETAIL_SIZEOF_HPP #define SPROUT_DETAIL_SIZEOF_HPP #include #include #include #include namespace sprout { namespace detail { template struct sizeof_ : public sprout::integral_constant {}; template struct sizeof_pack : public sprout::integral_constant {}; } // namespace detail } // namespace sprout #endif // #ifndef SPROUT_DETAIL_SIZEOF_HPP