From: Wolfgang Bangerth Date: Mon, 13 May 2024 21:38:08 +0000 (-0600) Subject: Add a changelog entry. X-Git-Tag: v9.6.0-rc1~220^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e98eeb51a13fb53738e7477c93b5d584061cac8;p=dealii.git Add a changelog entry. --- diff --git a/doc/news/changes/incompatibilities/20240513Bangerth-2 b/doc/news/changes/incompatibilities/20240513Bangerth-2 new file mode 100644 index 0000000000..47b50d10dc --- /dev/null +++ b/doc/news/changes/incompatibilities/20240513Bangerth-2 @@ -0,0 +1,14 @@ +Changed: The Quadrature class used to have a constructor that took an +integer argument. This was error-prone because it was easy to accidentally +write +@code + Quadrature quadrature(3); +@endcode +where +@code + QGauss quadrature(3); +@endcode +was meant. As a consequence, this constructor has been removed from the `public` +interface of the class. +
+(Wolfgang Bangerth, 2024/05/13)