]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Simplify some type construct. 18240/head
authorWolfgang Bangerth <bangerth@colostate.edu>
Thu, 13 Mar 2025 00:53:22 +0000 (18:53 -0600)
committerWolfgang Bangerth <bangerth@colostate.edu>
Thu, 13 Mar 2025 00:54:12 +0000 (18:54 -0600)
include/deal.II/base/exception_macros.h

index b0eb469fbd650fcfb8b59a6e45384d0d4c1b7d98..befdf5f9b4d0d81d8346a9ad452a1db06e86e9c1 100644 (file)
  * 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<decltype(cond)>::type \
-            *dealii_assert_variable_a = nullptr;               \
-          typename std::remove_reference<decltype(exc)>::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<decltype(cond)> *dealii_assert_variable_a = \
+            nullptr;                                                          \
+          std::remove_reference_t<decltype(exc)> *dealii_assert_variable_b =  \
+            nullptr;                                                          \
+          (void)dealii_assert_variable_a;                                     \
+          (void)dealii_assert_variable_b;                                     \
+        }                                                                     \
       while (false)
 #  else
 #    define Assert(cond, exc)  \

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.