]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/geometry/test/cs_undefined/test_relops.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / geometry / test / cs_undefined / test_relops.hpp
index 7a366bcd614c62dba9c3de2226e5fe928110bd3d..e9e2019b5cfb0103aa87278c093ba915597dcc9f 100644 (file)
@@ -1,7 +1,6 @@
 // Boost.Geometry
 
-// Copyright (c) 2019, Oracle and/or its affiliates.
-
+// Copyright (c) 2019-2021, Oracle and/or its affiliates.
 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
 
 // Licensed under the Boost Software License version 1.0.
@@ -33,7 +32,7 @@ template
 struct call_equals
 {
     template <typename S>
-    static void apply(G1 const& g1, G2 const& g2, S const& s) {}
+    static void apply(G1 const& , G2 const& , S const& ) {}
 };
 
 template <typename G1, typename G2, std::size_t Dim>
@@ -56,7 +55,7 @@ template
 struct call_overlaps
 {
     template <typename S>
-    static void apply(G1 const& g1, G2 const& g2, S const& s) {}
+    static void apply(G1 const& , G2 const& , S const& ) {}
 };
 
 template <typename G1, typename G2, std::size_t Dim>
@@ -89,7 +88,7 @@ template <typename G1, typename G2>
 struct call_touches<G1, G2, 0, 0>
 {
     template <typename S>
-    static void apply(G1 const& g1, G2 const& g2, S const& s) {}
+    static void apply(G1 const& , G2 const& , S const& ) {}
 };
 
 template
@@ -112,14 +111,14 @@ template <typename G1, typename G2>
 struct call_crosses<G1, G2, 0, 0>
 {
     template <typename S>
-    static void apply(G1 const& g1, G2 const& g2, S const& s) {}
+    static void apply(G1 const& , G2 const& , S const& ) {}
 };
 
 template <typename G1, typename G2>
 struct call_crosses<G1, G2, 2, 2>
 {
     template <typename S>
-    static void apply(G1 const& g1, G2 const& g2, S const& s) {}
+    static void apply(G1 const& , G2 const& , S const& ) {}
 };
 
 template <typename G1, typename G2, typename S>