From: Jean-Paul Pelteret Date: Tue, 5 May 2020 20:19:57 +0000 (+0200) Subject: Mark constructor for CopyData as explicit X-Git-Tag: v9.2.0-rc1~123^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e27ca80bfc120c992d87d4fb9cd1c5ce69e920a;p=dealii.git Mark constructor for CopyData as explicit --- diff --git a/include/deal.II/meshworker/copy_data.h b/include/deal.II/meshworker/copy_data.h index 63ed18007f..09704eacb7 100644 --- a/include/deal.II/meshworker/copy_data.h +++ b/include/deal.II/meshworker/copy_data.h @@ -55,12 +55,12 @@ namespace MeshWorker * Initialize everything with the same @p size. This is usually the number * of local degrees of freedom. */ - CopyData(const unsigned int size); + explicit CopyData(const unsigned int size); /** * For every object, specify the size they should have. */ - CopyData( + explicit CopyData( const std::array, n_matrices> &matrix_sizes, const std::array & vector_sizes, const std::array &dof_indices_sizes);