From: Matthias Maier Date: Thu, 26 Apr 2018 16:59:44 +0000 (-0500) Subject: Bugfix: Close #ifdef at the right point X-Git-Tag: v9.0.0-rc1~102^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23988ac34eeba1bc9613217104bfb66fe7e2e1a8;p=dealii.git Bugfix: Close #ifdef at the right point This was found by cppcheck that rightfully complains about the #endif statement closing at the wrong position. --- 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