From b64e75ab73dd9f6ef3b3792ed49ef89687989ea6 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Thu, 13 Feb 2020 14:42:02 -0600 Subject: [PATCH] try to work around an internal compiler error --- examples/step-69/step-69.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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( -- 2.39.5