Skip to content

Commit

Permalink
Avoid warnings about unused function arguments.
Browse files Browse the repository at this point in the history
  • Loading branch information
bangerth committed May 10, 2017
1 parent 5ebebb4 commit e6c97d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/geometry_model/interface.cc
Expand Up @@ -66,7 +66,7 @@ namespace aspect

template <int dim>
std::array<double,dim>
Interface<dim>::cartesian_to_natural_coodinates(const Point<dim> &position) const
Interface<dim>::cartesian_to_natural_coodinates(const Point<dim> &) const
{
Assert (false,
ExcMessage ("The cartesian_to_natural_coodinates function has "
Expand All @@ -75,7 +75,7 @@ namespace aspect

template <int dim>
Point<dim>
Interface<dim>::natural_to_cartesian_coodinates(const std::array<double,dim> &position) const
Interface<dim>::natural_to_cartesian_coodinates(const std::array<double,dim> &) const
{
Assert (false,
ExcMessage ("The natural_to_cartesian_coodinates function has "
Expand Down

0 comments on commit e6c97d9

Please sign in to comment.