]> git.donarmstrong.com Git - rsem.git/blob - boost/fusion/container/vector/limits.hpp
Updated boost to v1.55.0
[rsem.git] / boost / fusion / container / vector / limits.hpp
1 /*=============================================================================
2     Copyright (c) 2001-2011 Joel de Guzman
3
4     Distributed under the Boost Software License, Version 1.0. (See accompanying
5     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 ==============================================================================*/
7 #if !defined(FUSION_VECTOR_LIMITS_07072005_1246)
8 #define FUSION_VECTOR_LIMITS_07072005_1246
9
10 #include <boost/fusion/support/detail/pp_round.hpp>
11
12 #if !defined(FUSION_MAX_VECTOR_SIZE)
13 # define FUSION_MAX_VECTOR_SIZE 10
14 #else
15 # if FUSION_MAX_VECTOR_SIZE < 3
16 #   undef FUSION_MAX_VECTOR_SIZE
17 #   define FUSION_MAX_VECTOR_SIZE 10
18 # endif
19 #endif
20
21 #define FUSION_MAX_VECTOR_SIZE_STR BOOST_PP_STRINGIZE(BOOST_FUSION_PP_ROUND_UP(FUSION_MAX_VECTOR_SIZE))
22
23 #endif