]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/fusion/include/boost/fusion/container/list/detail/cpp03/limits.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / fusion / include / boost / fusion / container / list / detail / cpp03 / limits.hpp
CommitLineData
7c673cae
FG
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#include <boost/fusion/support/detail/pp_round.hpp>
11
12#if !defined(FUSION_MAX_LIST_SIZE)
13# define FUSION_MAX_LIST_SIZE 10
14#else
15# if FUSION_MAX_LIST_SIZE < 3
16# undef FUSION_MAX_LIST_SIZE
17# define FUSION_MAX_LIST_SIZE 10
18# endif
19#endif
20
21#define FUSION_MAX_LIST_SIZE_STR BOOST_PP_STRINGIZE(BOOST_FUSION_PP_ROUND_UP(FUSION_MAX_LIST_SIZE))
22
23#endif