From: David Wells Date: Wed, 18 Aug 2021 20:04:19 +0000 (-0400) Subject: Remove an unused member variable. X-Git-Tag: v9.4.0-rc1~1063^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F12673%2Fhead;p=dealii.git Remove an unused member variable. Now that we have hp::Collection (see 84f55c7706) this field is no longer used. --- diff --git a/include/deal.II/hp/q_collection.h b/include/deal.II/hp/q_collection.h index bc53eea112..abe324c012 100644 --- a/include/deal.II/hp/q_collection.h +++ b/include/deal.II/hp/q_collection.h @@ -124,13 +124,6 @@ namespace hp * Exception */ DeclException0(ExcNoQuadrature); - - private: - /** - * The real container, which stores pointers to the different quadrature - * objects. - */ - std::vector>> quadratures; };