]> git.donarmstrong.com Git - rsem.git/blob - boost/fusion/container/list/limits.hpp
1d545ba044cbdd438edd6ebfc79e2eec279e51d8
[rsem.git] / boost / fusion / container / list / 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_LIST_LIMITS_07172005_0112)
8 #define FUSION_LIST_LIMITS_07172005_0112
9
10 #if !defined(FUSION_MAX_LIST_SIZE)
11 # define FUSION_MAX_LIST_SIZE 10
12 #else
13 # if FUSION_MAX_LIST_SIZE < 3
14 #   undef FUSION_MAX_LIST_SIZE
15 #   define FUSION_MAX_LIST_SIZE 10
16 # endif
17 #endif
18
19 #define FUSION_MAX_LIST_SIZE_STR BOOST_PP_STRINGIZE(BOOST_FUSION_PP_ROUND_UP(FUSION_MAX_LIST_SIZE))
20
21 #endif