From 23988ac34eeba1bc9613217104bfb66fe7e2e1a8 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Thu, 26 Apr 2018 11:59:44 -0500 Subject: [PATCH] Bugfix: Close #ifdef at the right point This was found by cppcheck that rightfully complains about the #endif statement closing at the wrong position. --- include/deal.II/matrix_free/dof_info.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/matrix_free/dof_info.h b/include/deal.II/matrix_free/dof_info.h index 29baceeab7..214a4da17c 100644 --- a/include/deal.II/matrix_free/dof_info.h +++ b/include/deal.II/matrix_free/dof_info.h @@ -507,11 +507,11 @@ namespace internal return 0; } +#endif // ifndef DOXYGEN + } // end of namespace MatrixFreeFunctions } // end of namespace internal -#endif // ifndef DOXYGEN - DEAL_II_NAMESPACE_CLOSE #endif -- 2.39.5