From fca8c5a55f66ff5327b7b55c9d68413d3d6f8228 Mon Sep 17 00:00:00 2001 From: heister Date: Sun, 21 Aug 2011 03:54:48 +0000 Subject: [PATCH] fix error in copy constructor git-svn-id: https://svn.dealii.org/trunk@24143 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/grid/tria.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()); } -- 2.39.5