From: Wolfgang Bangerth Date: Wed, 16 Oct 2019 19:47:44 +0000 (-0600) Subject: Use positive form for comments. X-Git-Tag: v9.2.0-rc1~979^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F8917%2Fhead;p=dealii.git Use positive form for comments. --- diff --git a/source/grid/tria.cc b/source/grid/tria.cc index e6fbd034b6..a2d8abfbc1 100644 --- a/source/grid/tria.cc +++ b/source/grid/tria.cc @@ -3166,8 +3166,10 @@ namespace internal ExcInconsistentLineInfoOfLine(line_vertices.first, line_vertices.second, "boundary ids")); - // do not use the boundary id provided in subcell_line - // if it is an internal one + // If the boundary id provided in subcell_line + // is anything other than the default + // (internal_face_boundary_id), then set it in the new + // triangulation. if (subcell_line.boundary_id != numbers::internal_face_boundary_id) line->set_boundary_id(subcell_line.boundary_id); @@ -3320,8 +3322,10 @@ namespace internal line[2]->index(), line[3]->index(), "boundary ids")); - // do not use the boundary id provided in subcell_quad - // if it is an invalid or internal one + // If the boundary id provided in subcell_line + // is anything other than the default + // (internal_face_boundary_id), then set it in the new + // triangulation. if (subcell_quad.boundary_id != numbers::internal_face_boundary_id) quad->set_boundary_id(subcell_quad.boundary_id);