]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/geometry/strategies/densify.hpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / boost / geometry / strategies / densify.hpp
CommitLineData
11fdf7f2
TL
1// Boost.Geometry
2
3// Copyright (c) 2017, Oracle and/or its affiliates.
4
5// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
6
7// Licensed under the Boost Software License version 1.0.
8// http://www.boost.org/users/license.html
9
10#ifndef BOOST_GEOMETRY_STRATEGIES_DENSIFY_HPP
11#define BOOST_GEOMETRY_STRATEGIES_DENSIFY_HPP
12
13
14#include <boost/mpl/assert.hpp>
15
16
17namespace boost { namespace geometry
18{
19
20namespace strategy { namespace densify
21{
22
23namespace services
24{
25
26template <typename CSTag>
27struct default_strategy
28{
29 BOOST_MPL_ASSERT_MSG
30 (
31 false, NOT_IMPLEMENTED_FOR_THIS_CS
32 , (types<CSTag>)
33 );
34};
35
36} // namespace services
37
38}} // namespace strategy::densify
39
40}} // namespace boost::geometry
41
42#endif // BOOST_GEOMETRY_STRATEGIES_DENSIFY_HPP