Imported Upstream version 1.57.0
[platform/upstream/boost.git] / libs / multi_index / test / test_conv_iterators_main.cpp
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
12 #include <boost/detail/lightweight_test.hpp>
13 #include "test_conv_iterators.hpp"
14
15 int main()
16 {
17   test_conv_iterators();
18   return boost::report_errors();
19 }
20
21