From d62b8111950f1ae77d2683e5df2c339faefe3d0b Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Sun, 5 Mar 2017 15:35:23 +0100 Subject: [PATCH] Remove unused variables --- include/deal.II/matrix_free/operators.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 &) {} } -- 2.39.5