]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/geometry/index/test/rtree/exceptions/rtree_exceptions_lin.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / geometry / index / test / rtree / exceptions / rtree_exceptions_lin.cpp
1 // Boost.Geometry Index
2 // Unit Test
3
4 // Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
5
6 // Use, modification and distribution is subject to the Boost Software License,
7 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
8 // http://www.boost.org/LICENSE_1_0.txt)
9
10 #include <rtree/exceptions/test_exceptions.hpp>
11
12 int test_main(int, char* [])
13 {
14 test_rtree_value_exceptions< bgi::linear<4, 2> >();
15 test_rtree_value_exceptions(bgi::dynamic_linear(4, 2));
16
17 test_rtree_elements_exceptions< bgi::linear_throwing<4, 2> >();
18
19 return 0;
20 }