From: David Wells Date: Tue, 13 Aug 2024 22:51:42 +0000 (-0600) Subject: Change a variable name in Assert(). X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91a3ac9b8e2282a06b1f44a6c0775008b9918e5e;p=dealii.git Change a variable name in Assert(). This should fix the typo check failure. --- diff --git a/include/deal.II/base/exceptions.h b/include/deal.II/base/exceptions.h index b6c5d578b3..04293c46e4 100644 --- a/include/deal.II/base/exceptions.h +++ b/include/deal.II/base/exceptions.h @@ -1668,10 +1668,10 @@ namespace deal_II_exceptions # define Assert(cond, exc) \ do \ { \ - typename std::remove_reference::type *deal_ii_asser_a; \ - typename std::remove_reference::type *deal_ii_asser_b; \ - (void)deal_ii_asser_a; \ - (void)deal_ii_asser_b; \ + typename std::remove_reference::type *dealii_assert_a; \ + typename std::remove_reference::type *dealii_assert_b; \ + (void)dealii_assert_a; \ + (void)dealii_assert_b; \ } \ while (false)