]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/geometry/strategies/densify.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / geometry / strategies / densify.hpp
CommitLineData
11fdf7f2
TL
1// Boost.Geometry
2
20effc67 3// Copyright (c) 2017-2020, Oracle and/or its affiliates.
11fdf7f2
TL
4// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
5
6// Licensed under the Boost Software License version 1.0.
7// http://www.boost.org/users/license.html
8
9#ifndef BOOST_GEOMETRY_STRATEGIES_DENSIFY_HPP
10#define BOOST_GEOMETRY_STRATEGIES_DENSIFY_HPP
11
12
20effc67 13#include <boost/geometry/core/static_assert.hpp>
11fdf7f2
TL
14
15
16namespace boost { namespace geometry
17{
18
19namespace strategy { namespace densify
20{
21
22namespace services
23{
24
25template <typename CSTag>
26struct default_strategy
27{
20effc67
TL
28 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
29 "Not implemented for this coordinate system.",
30 CSTag);
11fdf7f2
TL
31};
32
33} // namespace services
34
35}} // namespace strategy::densify
36
37}} // namespace boost::geometry
38
39#endif // BOOST_GEOMETRY_STRATEGIES_DENSIFY_HPP