Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:34:39

0001 /*=============================================================================
0002     Copyright (c) 2001-2011 Joel de Guzman
0003 
0004     Distributed under the Boost Software License, Version 1.0. (See accompanying
0005     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 ==============================================================================*/
0007 #if !defined(FUSION_VECTOR_LIMITS_07072005_1246)
0008 #define FUSION_VECTOR_LIMITS_07072005_1246
0009 
0010 #include <boost/fusion/support/config.hpp>
0011 #include <boost/fusion/support/detail/pp_round.hpp>
0012 #include <boost/preprocessor/stringize.hpp>
0013 
0014 #if !defined(FUSION_MAX_VECTOR_SIZE)
0015 # define FUSION_MAX_VECTOR_SIZE 10
0016 #else
0017 # if FUSION_MAX_VECTOR_SIZE < 3
0018 #   undef FUSION_MAX_VECTOR_SIZE
0019 #   define FUSION_MAX_VECTOR_SIZE 10
0020 # endif
0021 #endif
0022 
0023 #define FUSION_MAX_VECTOR_SIZE_STR BOOST_PP_STRINGIZE(BOOST_FUSION_PP_ROUND_UP(FUSION_MAX_VECTOR_SIZE))
0024 
0025 #endif