// Boost.Geometry (aka GGL, Generic Geometry Library) // Unit Test // Copyright (c) 2008-2012 Bruno Lalande, Paris, France. // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #include #include #include #include #include #include BOOST_GEOMETRY_REGISTER_BOOST_TUPLE_CS(cs::cartesian) template void test_all() { P p1, p2; bg::distance(p1, p2); } int test_main(int, char* []) { test_all >(); test_all >(); test_all >(); test_all >(); test_all >(); return 0; }