Skip to content
Snippets Groups Projects
Commit 8d756ea4 authored by Karsten Rink's avatar Karsten Rink
Browse files

removed parameter-name to avoid compiler warning

parent 3e7f467d
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,7 @@ class MinimalBoundingSphere ...@@ -31,7 +31,7 @@ class MinimalBoundingSphere
{ {
public: public:
/// Copy constructor /// Copy constructor
MinimalBoundingSphere(MinimalBoundingSphere const& sphere) = default; MinimalBoundingSphere(MinimalBoundingSphere const&) = default;
/// Point-Sphere /// Point-Sphere
MinimalBoundingSphere(GeoLib::Point const& p, double radius = std::numeric_limits<double>::epsilon()); MinimalBoundingSphere(GeoLib::Point const& p, double radius = std::numeric_limits<double>::epsilon());
/// Bounding sphere using two points /// Bounding sphere using two points
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment