From: heister Date: Thu, 9 Dec 2010 11:22:21 +0000 (+0000) Subject: fix typo and remove unused variable. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4cc741aef63a56fd2ca53841f602b8e2f0c523cd;p=dealii-svn.git fix typo and remove unused variable. git-svn-id: https://svn.dealii.org/trunk@22948 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/grid/tria.cc b/deal.II/source/grid/tria.cc index 65025dee53..275cebc796 100644 --- a/deal.II/source/grid/tria.cc +++ b/deal.II/source/grid/tria.cc @@ -9555,7 +9555,7 @@ create_triangulation (const std::vector > &v, For example if two elements share a face, and this face is face 0 for element 0 and face 1 for element 1, then table(0,1) will tell wether the orientation are the same (true) or - oppositte (false). + opposite (false). Even though there may be a combinatorial/graph theory argument to get this table in any dimension, I tested by hand all the different possible @@ -9608,7 +9608,7 @@ create_triangulation (const std::vector > &v, begin_active()->set_direction_flag (true); begin_active()->set_user_flag (); - int round = 0, ncell=0; + int round = 0; while (this_round.size() > 0) {