From 7fadbe19ff2ddce523e5cf34e18c24743abecd3c Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 12 Mar 2025 18:53:22 -0600 Subject: [PATCH] Simplify some type construct. --- include/deal.II/base/exception_macros.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/include/deal.II/base/exception_macros.h b/include/deal.II/base/exception_macros.h index b0eb469fbd..befdf5f9b4 100644 --- a/include/deal.II/base/exception_macros.h +++ b/include/deal.II/base/exception_macros.h @@ -604,16 +604,16 @@ * We accomplish this by using decltype(...) and create a dummy pointer * with these signatures. Notably, this approach works with C++20 onwards. */ -# define Assert(cond, exc) \ - do \ - { \ - typename std::remove_reference::type \ - *dealii_assert_variable_a = nullptr; \ - typename std::remove_reference::type \ - *dealii_assert_variable_b = nullptr; \ - (void)dealii_assert_variable_a; \ - (void)dealii_assert_variable_b; \ - } \ +# define Assert(cond, exc) \ + do \ + { \ + std::remove_reference_t *dealii_assert_variable_a = \ + nullptr; \ + std::remove_reference_t *dealii_assert_variable_b = \ + nullptr; \ + (void)dealii_assert_variable_a; \ + (void)dealii_assert_variable_b; \ + } \ while (false) # else # define Assert(cond, exc) \ -- 2.39.5