Skip to content
Snippets Groups Projects

Get rid unused/shadowed variable compiler warnings.

Merged Markus Blatt requested to merge feature/shut-up-compiler-warnings into master
14 files
+ 25
25
Compare changes
  • Side-by-side
  • Inline
Files
14
@@ -86,7 +86,7 @@ namespace Dune {
}
#else
template<typename type>
QuadratureRule<ct,1> UseLapackOrError( int const degree, int const alpha)
QuadratureRule<ct,1> UseLapackOrError( int const, int const)
{
DUNE_THROW(NotImplemented, "LAPACK must be enable to use JacobiN quadrature rules.");
}
Loading