test_conv_iterators_main.cpp 527 B

123456789101112131415161718192021
  1. /* Boost.MultiIndex test for interconvertibilty between const and
  2. * non-const iterators.
  3. *
  4. * Copyright 2003-2013 Joaquin M Lopez Munoz.
  5. * Distributed under the Boost Software License, Version 1.0.
  6. * (See accompanying file LICENSE_1_0.txt or copy at
  7. * http://www.boost.org/LICENSE_1_0.txt)
  8. *
  9. * See http://www.boost.org/libs/multi_index for library home page.
  10. */
  11. #include <boost/detail/lightweight_test.hpp>
  12. #include "test_conv_iterators.hpp"
  13. int main()
  14. {
  15. test_conv_iterators();
  16. return boost::report_errors();
  17. }