deque_iterator.cpp 622 B

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