From 443ad255f911f92b117f4ee4fac60e935b3b563c Mon Sep 17 00:00:00 2001 From: David Wells Date: Sun, 31 May 2015 18:36:58 -0400 Subject: [PATCH] Remove default constructor implementations. --- include/deal.II/base/data_out_base.h | 18 ------------------ source/base/data_out_base.cc | 14 ++------------ 2 files changed, 2 insertions(+), 30 deletions(-) diff --git a/include/deal.II/base/data_out_base.h b/include/deal.II/base/data_out_base.h index 99a3a12d17..fe7037c104 100644 --- a/include/deal.II/base/data_out_base.h +++ b/include/deal.II/base/data_out_base.h @@ -517,12 +517,6 @@ namespace DataOutBase * structure (and remove the private as well). */ int dummy; - - public: - /** - * Constructor. - */ - GnuplotFlags (); }; /** @@ -830,12 +824,6 @@ namespace DataOutBase * structure (and remove the private as well). */ int dummy; - - public: - /** - * Default constructor. - */ - GmvFlags (); }; /** @@ -1000,12 +988,6 @@ namespace DataOutBase * structure (and remove the private as well). */ int dummy; - - public: - /** - * Constructor. - */ - Deal_II_IntermediateFlags (); }; /** diff --git a/source/base/data_out_base.cc b/source/base/data_out_base.cc index ab69d353c0..aea0e93dac 100644 --- a/source/base/data_out_base.cc +++ b/source/base/data_out_base.cc @@ -1972,10 +1972,7 @@ namespace DataOutBase } - GnuplotFlags::GnuplotFlags () - : - dummy (0) - {} + SvgFlags::SvgFlags (const unsigned int height_vector, const int azimuth_angle, const int polar_angle, @@ -2257,8 +2254,7 @@ namespace DataOutBase } - GmvFlags::GmvFlags () - {} + TecplotFlags:: TecplotFlags (const char *tecplot_binary_file_name, const char *zone_name) @@ -2289,12 +2285,6 @@ namespace DataOutBase {} - Deal_II_IntermediateFlags::Deal_II_IntermediateFlags () - : - dummy (0) - {} - - OutputFormat parse_output_format (const std::string &format_name) -- 2.39.5