/*============================================================================= Copyright (c) 2014-2015 Kohei Takahashi 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 FUSION_IS_SAME_SIZE_10082015_1156 #define FUSION_IS_SAME_SIZE_10082015_1156 #include #include #include #include #include namespace boost { namespace fusion { namespace detail { template struct is_same_size : mpl::false_ {}; template struct is_same_size >::type, typename enable_if >::type> : mpl::equal_to, result_of::size > {}; }}} #endif