From: Wolfgang Bangerth Date: Wed, 23 Aug 2017 17:04:51 +0000 (-0600) Subject: Allow copying invalid DoF iterators. X-Git-Tag: v9.0.0-rc1~1177^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b10e942c1dfc944329786655ada3672683a0997;p=dealii.git Allow copying invalid DoF iterators. --- diff --git a/include/deal.II/dofs/dof_accessor.templates.h b/include/deal.II/dofs/dof_accessor.templates.h index e8c442ccc9..6907456786 100644 --- a/include/deal.II/dofs/dof_accessor.templates.h +++ b/include/deal.II/dofs/dof_accessor.templates.h @@ -149,7 +149,7 @@ DoFAccessor::copy_from (const DoFAccessor &a) { BaseClass::copy_from (a); - set_dof_handler (a.dof_handler); + this->dof_handler = a.dof_handler; }