Prepare implementing c++11 variadic based fusion::vector.

This commit is contained in:
Kohei Takahashi
2014-11-09 15:27:54 +09:00
parent 2b14951660
commit d937003962
15 changed files with 107 additions and 25 deletions

View File

@ -9,11 +9,19 @@
#include <boost/config.hpp>
#include <boost/fusion/support/config.hpp>
#include <boost/fusion/container/vector/detail/config.hpp>
///////////////////////////////////////////////////////////////////////////////
// Without variadics, we will use the PP version
///////////////////////////////////////////////////////////////////////////////
#if !defined(BOOST_FUSION_HAS_VARIADIC_VECTOR)
# include <boost/fusion/container/vector/detail/cpp03/vector30.hpp>
#else
///////////////////////////////////////////////////////////////////////////////
// C++11 interface
///////////////////////////////////////////////////////////////////////////////
#endif
#endif