Skip to content

Commit

Permalink
Fix unused parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Djneu committed Jan 23, 2025
1 parent c1b8a9a commit c3c6ee3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/world_builder/topography/uniform.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit c3c6ee3

Please sign in to comment.