12345678910111213141516171819202122 |
- #if FUSION_MAX_VECTOR_SIZE <= 10
- #include <boost/fusion/container/generation/detail/preprocessed/make_vector10.hpp>
- #elif FUSION_MAX_VECTOR_SIZE <= 20
- #include <boost/fusion/container/generation/detail/preprocessed/make_vector20.hpp>
- #elif FUSION_MAX_VECTOR_SIZE <= 30
- #include <boost/fusion/container/generation/detail/preprocessed/make_vector30.hpp>
- #elif FUSION_MAX_VECTOR_SIZE <= 40
- #include <boost/fusion/container/generation/detail/preprocessed/make_vector40.hpp>
- #elif FUSION_MAX_VECTOR_SIZE <= 50
- #include <boost/fusion/container/generation/detail/preprocessed/make_vector50.hpp>
- #else
- #error "FUSION_MAX_VECTOR_SIZE out of bounds for preprocessed headers"
- #endif
|