From: Martin Kronbichler Date: Sun, 5 Mar 2017 14:35:23 +0000 (+0100) Subject: Remove unused variables X-Git-Tag: v8.5.0-rc1~68^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d62b8111950f1ae77d2683e5df2c339faefe3d0b;p=dealii.git Remove unused variables --- diff --git a/include/deal.II/matrix_free/operators.h b/include/deal.II/matrix_free/operators.h index 775e51c5d9..8f35118acd 100644 --- a/include/deal.II/matrix_free/operators.h +++ b/include/deal.II/matrix_free/operators.h @@ -51,7 +51,7 @@ namespace MatrixFreeOperators template typename std_cxx11::enable_if::value, unsigned int>::type - n_blocks(const VectorType &vector) + n_blocks(const VectorType &) { return 1; } @@ -76,7 +76,7 @@ namespace MatrixFreeOperators template typename std_cxx11::enable_if::value, VectorType &>::type - subblock(VectorType &vector, unsigned int block_no) + subblock(VectorType &vector, unsigned int) { return vector; } @@ -84,7 +84,7 @@ namespace MatrixFreeOperators template typename std_cxx11::enable_if::value, const VectorType &>::type - subblock(const VectorType &vector, unsigned int block_no) + subblock(const VectorType &vector, unsigned int) { return vector; } @@ -100,7 +100,7 @@ namespace MatrixFreeOperators template typename std_cxx11::enable_if::value, void>::type - collect_sizes(const VectorType &vector) + collect_sizes(const VectorType &) {} }