12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- ///////////////////////////////////////////////////////////////////////////////
- // With no variadics, we will use the C++03 version
- ///////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////////
- // C++11 interface
- ///////////////////////////////////////////////////////////////////////////////
- namespace boost { namespace fusion
- {
- template <typename ...T>
- struct vector;
- template <typename ...T> \
- using BOOST_PP_CAT(vector, N) = vector<T...>;
- BOOST_PP_REPEAT(51, FUSION_VECTOR_N_ALIASES, ~)
- }}
|