Skip to content

Commit

Permalink
Merge pull request #1574 from bangerth/avoid-warning-3
Browse files Browse the repository at this point in the history
Avoid warnings about unused function arguments.
  • Loading branch information
tjhei committed May 10, 2017
2 parents 5ebebb4 + e6c97d9 commit 1faf156
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 1faf156

Please sign in to comment.