1// Boost.Range library
2//
3// Copyright Neil Groves 2011. Use, modification and
4// distribution is subject to the Boost Software License, Version
5// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6// http://www.boost.org/LICENSE_1_0.txt)
7//
8//
9// For more information, see http://www.boost.org/libs/range/
10//
11
12// Embarrasingly, the mere inclusion of these headers in this order was
13// enough to trigger the defect.
14#include <boost/range/algorithm.hpp>
15#include <boost/range/algorithm_ext.hpp>
16
17#include <boost/test/test_tools.hpp>
18#include <boost/test/unit_test.hpp>
19
20namespace boost
21{
22 namespace
23 {
24 void test_ticket_5556() {}
25 }
26}
27
28boost::unit_test::test_suite*
29init_unit_test_suite(int argc, char* argv[])
30{
31 boost::unit_test::test_suite* test
32 = BOOST_TEST_SUITE( "RangeTestSuite.ticket_5556" );
33
34 test->add( BOOST_TEST_CASE( &boost::test_ticket_5556 ) );
35
36 return test;
37}
38

source code of boost/libs/range/test/ticket_5556_is_sorted_namespace.cpp