From c3c6ee325b20087df60edee311925f323f1bab8e Mon Sep 17 00:00:00 2001 From: Derek Neuharth Date: Thu, 23 Jan 2025 15:11:52 +0100 Subject: [PATCH] Fix unused parameters --- source/world_builder/topography/uniform.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/world_builder/topography/uniform.cc b/source/world_builder/topography/uniform.cc index 3b71e7490..db47f4846 100644 --- a/source/world_builder/topography/uniform.cc +++ b/source/world_builder/topography/uniform.cc @@ -54,9 +54,9 @@ namespace WorldBuilder * we assume there is no topography. */ double - Uniform::get_topography(const Point<3> &position, - const Objects::NaturalCoordinate &position_in_natural_coordinates, - const double depth) const + Uniform::get_topography(const Point<3> &/*position*/, + const Objects::NaturalCoordinate &/*position_in_natural_coordinates*/, + const double /*depth*/) const { return 0; }