Merge upstream branch 'develop' into more-ci-targets

This commit is contained in:
Kohei Takahashi
2018-04-22 03:41:55 +09:00
21 changed files with 231 additions and 82 deletions

View File

@ -26,7 +26,13 @@ namespace boost { namespace fusion { namespace detail
BOOST_FUSION_BARRIER_BEGIN
template <int size>
struct as_deque;
struct as_deque
{
BOOST_STATIC_ASSERT_MSG(
size <= FUSION_MAX_DEQUE_SIZE
, "FUSION_MAX_DEQUE_SIZE limit is too low"
);
};
template <>
struct as_deque<0>