From: Timo Heister Date: Mon, 9 Sep 2019 20:06:25 +0000 (+0200) Subject: fix broken step-56 X-Git-Tag: v9.2.0-rc1~1127^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F8719%2Fhead;p=dealii.git fix broken step-56 --- diff --git a/examples/step-56/step-56.cc b/examples/step-56/step-56.cc index 042b152e47..81126b1614 100644 --- a/examples/step-56/step-56.cc +++ b/examples/step-56/step-56.cc @@ -750,7 +750,7 @@ namespace Step56 } // This iterator goes over all cells (not just active) - for (const auto &cell : velocity_dof_handler.active_cell_iterators()) + for (const auto &cell : velocity_dof_handler.cell_iterators()) { fe_values.reinit(cell); cell_matrix = 0;