Skip to content

Commit 41cb55b

Browse files
committed
Fix unused parameters
1 parent cefb474 commit 41cb55b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/world_builder/topography/uniform.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ namespace WorldBuilder
5454
* we assume there is no topography.
5555
*/
5656
double
57-
Uniform::get_topography(const Point<3> &position,
58-
const Objects::NaturalCoordinate &position_in_natural_coordinates,
59-
const double depth) const
57+
Uniform::get_topography(const Point<3> &/*position*/,
58+
const Objects::NaturalCoordinate &/*position_in_natural_coordinates*/,
59+
const double /*depth*/) const
6060
{
6161
return 0;
6262
}

0 commit comments

Comments
 (0)