From: Wolfgang Bangerth Date: Mon, 10 Sep 2001 08:57:23 +0000 (+0000) Subject: Delete debug output. Remove TODO as this seems unnecessary and intractible. X-Git-Tag: v8.0.0~18847 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=997745993302b0f9b49c706e7cac90b23f26a309;p=dealii.git Delete debug output. Remove TODO as this seems unnecessary and intractible. git-svn-id: https://svn.dealii.org/trunk@4951 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/mapping_q1.cc b/deal.II/deal.II/source/fe/mapping_q1.cc index 1a0e665d11..5083744891 100644 --- a/deal.II/deal.II/source/fe/mapping_q1.cc +++ b/deal.II/deal.II/source/fe/mapping_q1.cc @@ -301,8 +301,6 @@ MappingQ1::update_once (const UpdateFlags in) const | update_normal_vectors)) out |= update_transformation_gradients; - // cerr << "Once: " << hex << out << dec << endl; - return out; } @@ -319,8 +317,6 @@ MappingQ1::update_each (const UpdateFlags in) const | update_boundary_forms | update_normal_vectors)); - // cerr << "Mapping-each " << hex << in << ' ' << out; - // The following is a little incorrect: // If not applied on a face, // update_boundary_forms does not @@ -330,8 +326,6 @@ MappingQ1::update_each (const UpdateFlags in) const // update_boundary_forms is simply // ignored for the interior of a // cell. -//TODO:[RH,GK] Consider giving this function information on whether we are on -// a face. if (out & (update_JxW_values |update_normal_vectors)) out |= update_boundary_forms; @@ -342,8 +336,6 @@ MappingQ1::update_each (const UpdateFlags in) const | update_normal_vectors)) out |= update_contravariant_transformation; - // cerr << " " << hex << out << dec << endl; - return out; }