From: Timo Heister Date: Sun, 21 Aug 2011 03:54:48 +0000 (+0000) Subject: fix error in copy constructor X-Git-Tag: v8.0.0~3625 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f52c1dea12e98dab0148450aa3242d942ad0dc93;p=dealii.git fix error in copy constructor git-svn-id: https://svn.dealii.org/trunk@24143 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/grid/tria.cc b/deal.II/source/grid/tria.cc index 8306b42c4d..15431b627e 100644 --- a/deal.II/source/grid/tria.cc +++ b/deal.II/source/grid/tria.cc @@ -9394,13 +9394,13 @@ Triangulation (const MeshSmoothing smooth_grid, template Triangulation:: -Triangulation (const Triangulation &) +Triangulation (const Triangulation & other) // do not set any subscriptors; // anyway, calling this constructor // is an error! : Subscriptor(), - check_for_distorted_cells(check_for_distorted_cells) + check_for_distorted_cells(other.check_for_distorted_cells) { Assert (false, ExcInternalError()); }