From: Matthias Maier Date: Thu, 13 Feb 2020 20:42:02 +0000 (-0600) Subject: try to work around an internal compiler error X-Git-Tag: v9.2.0-rc1~443^2~13 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b64e75ab73dd9f6ef3b3792ed49ef89687989ea6;p=dealii.git try to work around an internal compiler error --- diff --git a/examples/step-69/step-69.cc b/examples/step-69/step-69.cc index 7ec7bf8e3b..81f497c559 100644 --- a/examples/step-69/step-69.cc +++ b/examples/step-69/step-69.cc @@ -1017,9 +1017,8 @@ namespace Step69 for (auto &matrix : nij_matrix) matrix = 0.; - const unsigned int dofs_per_cell = - discretization->finite_element.dofs_per_cell; - const unsigned int n_q_points = discretization->quadrature.size(); + unsigned int dofs_per_cell = discretization->finite_element.dofs_per_cell; + unsigned int n_q_points = discretization->quadrature.size(); /* This is the implementation of the scratch data required by WorkStream */ MeshWorker::ScratchData scratch_data(