From: David Wells Date: Tue, 3 May 2022 22:05:37 +0000 (-0400) Subject: Fix the default constructor in NumberCache. X-Git-Tag: v9.4.0-rc1~285^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b95a57b5828048992626277f0d8ec1b2297dc5a8;p=dealii.git Fix the default constructor in NumberCache. We should just delegate so that this is equivalent to zero DoFs. --- diff --git a/source/dofs/number_cache.cc b/source/dofs/number_cache.cc index a99613c6b7..63004942d1 100644 --- a/source/dofs/number_cache.cc +++ b/source/dofs/number_cache.cc @@ -28,8 +28,7 @@ namespace internal namespace DoFHandlerImplementation { NumberCache::NumberCache() - : n_global_dofs(0) - , n_locally_owned_dofs(0) + : NumberCache(0) {}