From 5afc020598a3179d9b206a180cb932abe755e07a Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 30 Jan 2020 09:58:00 -0700 Subject: [PATCH] Avoid a warning about an unused variable. --- include/deal.II/matrix_free/matrix_free.templates.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/deal.II/matrix_free/matrix_free.templates.h b/include/deal.II/matrix_free/matrix_free.templates.h index 3d744688b9..04a41b45c9 100644 --- a/include/deal.II/matrix_free/matrix_free.templates.h +++ b/include/deal.II/matrix_free/matrix_free.templates.h @@ -1794,6 +1794,7 @@ MatrixFree::initialize_indices( const unsigned int v, const bool ext, const bool flag) { + (void)v; Assert( face_info.faces[f].cells_interior[v] < n_macro_cells_before * -- 2.39.5