From: bangerth Date: Fri, 10 Jun 2011 06:05:08 +0000 (+0000) Subject: Remove a variable that isn't used and that, as noted by the triangulation X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7902994c5a15d7e178fff50318b9857e2bd3a9a;p=dealii-svn.git Remove a variable that isn't used and that, as noted by the triangulation serialization test, wasn't initialized. git-svn-id: https://svn.dealii.org/trunk@23802 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/grid/tria_objects.h b/deal.II/include/deal.II/grid/tria_objects.h index 1bc0d18825..cf32cc43d1 100644 --- a/deal.II/include/deal.II/grid/tria_objects.h +++ b/deal.II/include/deal.II/grid/tria_objects.h @@ -380,11 +380,6 @@ namespace internal * Counter for next_free_pair_* functions */ unsigned int next_free_pair; - - /** - * Bool flag for next_free_single_* functions - */ - bool reverse_order_next_free_single; /** * The data type storing user @@ -793,7 +788,7 @@ namespace internal ar & used; ar & user_flags; ar & material_id; - ar & next_free_single & next_free_pair & reverse_order_next_free_single; + ar & next_free_single & next_free_pair; ar & user_data & user_data_type; }