From: Daniel Arndt Date: Wed, 11 Oct 2017 18:43:51 +0000 (+0200) Subject: Remove unused constructors in unnamed namespace X-Git-Tag: v9.0.0-rc1~962^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=542249368efd95a3425246ab985887759fb8d6e2;p=dealii.git Remove unused constructors in unnamed namespace --- diff --git a/source/grid/grid_reordering.cc b/source/grid/grid_reordering.cc index 1aff505e35..77661f7998 100644 --- a/source/grid/grid_reordering.cc +++ b/source/grid/grid_reordering.cc @@ -289,17 +289,6 @@ namespace class Edge { public: - /** - * Default constructor. Creates an invalid edge. - */ - Edge () - : - orientation_status (not_oriented) - { - for (unsigned int i=0; i<2; ++i) - vertex_indices[i] = numbers::invalid_unsigned_int; - } - /** * Constructor. Create the edge based on the information given * in @p cell, and selecting the edge with number @p edge_number @@ -377,17 +366,6 @@ namespace template struct Cell { - /** - * Default construct a cell. - */ - Cell () - { - for (unsigned int i=0; i::vertices_per_cell; ++i) - vertex_indices[i] = numbers::invalid_unsigned_int; - for (unsigned int i=0; i::lines_per_cell; ++i) - edge_indices[i] = numbers::invalid_unsigned_int; - } - /** * Construct a Cell object from a CellData object. Also take a * (sorted) list of edges and to point the edges of the current