]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/geometry/index/test/rtree/interprocess/rtree_interprocess_rstar_dyn.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / geometry / index / test / rtree / interprocess / rtree_interprocess_rstar_dyn.cpp
CommitLineData
7c673cae
FG
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/interprocess/test_interprocess.hpp>
11
12int test_main(int, char* [])
13{
14 typedef bg::model::point<float, 2, bg::cs::cartesian> P2f;
15
16 testset::interprocess::modifiers_and_additional<P2f>(bgi::dynamic_rstar(32, 8));
17
18 return 0;
19}