vector_iterator.cpp 654 B

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