From 8d756ea4cd08024b666c133a72684547a36135ef Mon Sep 17 00:00:00 2001
From: Karsten Rink <karsten.rink@ufz.de>
Date: Wed, 3 Sep 2014 14:01:16 +0200
Subject: [PATCH] removed parameter-name to avoid compiler warning

---
 GeoLib/MinimalBoundingSphere.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/GeoLib/MinimalBoundingSphere.h b/GeoLib/MinimalBoundingSphere.h
index cf3f48665ce..1c4777d00c9 100644
--- a/GeoLib/MinimalBoundingSphere.h
+++ b/GeoLib/MinimalBoundingSphere.h
@@ -31,7 +31,7 @@ class MinimalBoundingSphere
 {
 public:
     /// Copy constructor
-    MinimalBoundingSphere(MinimalBoundingSphere const& sphere) = default;
+    MinimalBoundingSphere(MinimalBoundingSphere const&) = default;
     /// Point-Sphere
     MinimalBoundingSphere(GeoLib::Point const& p, double radius = std::numeric_limits<double>::epsilon());
     /// Bounding sphere using two points
-- 
GitLab