From: Wolfgang Bangerth Date: Thu, 25 Jan 2024 21:18:09 +0000 (-0700) Subject: Add a changelog entry. X-Git-Tag: relicensing~102^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F16543%2Fhead;p=dealii.git Add a changelog entry. --- diff --git a/doc/news/changes/major/20240125Bangerth b/doc/news/changes/major/20240125Bangerth new file mode 100644 index 0000000000..d7d5c7ecb5 --- /dev/null +++ b/doc/news/changes/major/20240125Bangerth @@ -0,0 +1,9 @@ +New: There is now a function-like macro `DEAL_II_NOT_IMPLEMENTED();` +that can be used to indicate places where something is not +implemented. If a code runs into a place where it appears, the program +is aborted (or, as documented, an exception is thrown). In contrast to +the old way of indicating such a thing (namely, writing +`Assert(false, ExcNotImplemented());`, the error is raised even in +release mode. +
+(Wolfgang Bangerth, 2024/01/24)