From: Wolfgang Bangerth Date: Thu, 23 Jul 2015 21:29:34 +0000 (-0500) Subject: Remove an unused variable. X-Git-Tag: v8.4.0-rc2~730^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1181%2Fhead;p=dealii.git Remove an unused variable. This must be a left-over from some earlier development. --- diff --git a/include/deal.II/fe/mapping_q.h b/include/deal.II/fe/mapping_q.h index ff30ce782d..7c9c7613d1 100644 --- a/include/deal.II/fe/mapping_q.h +++ b/include/deal.II/fe/mapping_q.h @@ -167,14 +167,6 @@ public: */ virtual std::size_t memory_consumption () const; - /** - * Unit normal vectors. Used for the alternative computation of the normal - * vectors. See doc of the @p alternative_normals_computation flag. - * - * Filled (hardcoded) once in @p get_face_data. - */ - std::vector > > unit_normals; - /** * Flag that is set by the fill_fe_[[sub]face]_values function. * diff --git a/source/fe/mapping_q.cc b/source/fe/mapping_q.cc index d3ab675169..e0831225e0 100644 --- a/source/fe/mapping_q.cc +++ b/source/fe/mapping_q.cc @@ -50,7 +50,6 @@ std::size_t MappingQ::InternalData::memory_consumption () const { return (MappingQ1::InternalData::memory_consumption () + - MemoryConsumption::memory_consumption (unit_normals) + MemoryConsumption::memory_consumption (use_mapping_q1_on_current_cell) + MemoryConsumption::memory_consumption (mapping_q1_data)); }