rearranging files

[SVN r78106]
This commit is contained in:
Joel de Guzman
2012-04-21 06:09:54 +00:00
parent 01f002f084
commit fad4a7ebeb
7 changed files with 97 additions and 114 deletions

View File

@ -10,15 +10,26 @@
#include <boost/config.hpp>
///////////////////////////////////////////////////////////////////////////////
// With no decltype and variadics, we will use the C++03 version
///////////////////////////////////////////////////////////////////////////////
#if (defined(BOOST_NO_DECLTYPE) \
|| defined(BOOST_NO_VARIADIC_TEMPLATES) \
|| defined(BOOST_NO_RVALUE_REFERENCES))
# include <boost/fusion/container/deque/cpp03_deque_fwd.hpp>
# include <boost/fusion/container/deque/detail/cpp03_deque_fwd.hpp>
#else
# if !defined(BOOST_FUSION_HAS_CPP11_DEQUE)
# define BOOST_FUSION_HAS_CPP11_DEQUE
# endif
# include <boost/fusion/container/deque/cpp11_deque_fwd.hpp>
#endif
///////////////////////////////////////////////////////////////////////////////
// C++11 interface
///////////////////////////////////////////////////////////////////////////////
namespace boost { namespace fusion
{
template <typename ...T>
struct deque;
}}
#endif
#endif