deque_make.cpp 661 B

1234567891011121314151617181920
  1. /*=============================================================================
  2. Copyright (c) 1999-2003 Jaakko Jarvi
  3. Copyright (c) 2001-2011 Joel de Guzman
  4. Copyright (c) 2006 Dan Marsden
  5. Distributed under the Boost Software License, Version 1.0. (See accompanying
  6. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. ==============================================================================*/
  8. #include <boost/fusion/container/deque/deque.hpp>
  9. #include <boost/fusion/container/generation/make_deque.hpp>
  10. #define FUSION_SEQUENCE deque
  11. #include "make.hpp"
  12. int
  13. main()
  14. {
  15. test();
  16. return boost::report_errors();
  17. }