]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/geometry/strategies/expand.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / geometry / strategies / expand.hpp
index 39d4145144a53d6057534d39c4acdf3f775a7244..0a5b21125c6fab6f3ef911b04b05f8b873598316 100644 (file)
@@ -1,45 +1,21 @@
 // Boost.Geometry
 
-// Copyright (c) 2018 Oracle and/or its affiliates.
+// Copyright (c) 2020, Oracle and/or its affiliates.
+
 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
 
-// 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)
+// Licensed under the Boost Software License version 1.0.
+// http://www.boost.org/users/license.html
 
 #ifndef BOOST_GEOMETRY_STRATEGIES_EXPAND_HPP
 #define BOOST_GEOMETRY_STRATEGIES_EXPAND_HPP
 
-#include <boost/mpl/assert.hpp>
-
-namespace boost { namespace geometry
-{
-
 
-namespace strategy { namespace expand { namespace services
-{
+#include <boost/config/pragma_message.hpp>
+BOOST_PRAGMA_MESSAGE("This include file is deprecated and will be removed in the future.")
 
-/*!
-\brief Traits class binding a default envelope strategy to a coordinate system
-\ingroup util
-\tparam Tag tag of geometry
-\tparam CSTag tag of coordinate system
-\tparam CalculationType \tparam_calculation
-*/
-template <typename Tag, typename CSTag, typename CalculationType = void>
-struct default_strategy
-{
-    BOOST_MPL_ASSERT_MSG
-        (
-            false, NOT_IMPLEMENTED_FOR_THIS_TYPE
-            , (types<Tag, CSTag>)
-        );
-};
 
-}}} // namespace strategy::expand::services
+#include <boost/geometry/strategy/expand.hpp>
 
 
-}} // namespace boost::geometry
-
 #endif // BOOST_GEOMETRY_STRATEGIES_EXPAND_HPP
-