From: David Wells Date: Mon, 20 Mar 2023 19:39:37 +0000 (-0400) Subject: Fix namespacing in the ExodusII error macro. X-Git-Tag: v9.5.0-rc1~448^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=893b651ff1ec9431603deaca69d716d02cde42ba;p=dealii.git Fix namespacing in the ExodusII error macro. --- diff --git a/include/deal.II/base/exceptions.h b/include/deal.II/base/exceptions.h index 2f7416e4f2..31ab4a5486 100644 --- a/include/deal.II/base/exceptions.h +++ b/include/deal.II/base/exceptions.h @@ -2082,7 +2082,8 @@ namespace internal * @ingroup Exceptions */ # define AssertThrowExodusII(error_code) \ - AssertThrow(error_code == 0, ExcExodusII(error_code)); + AssertThrow(error_code == 0, \ + dealii::StandardExceptions::ExcExodusII(error_code)); #endif // DEAL_II_TRILINOS_WITH_SEACAS using namespace StandardExceptions;