From: Jean-Paul Pelteret Date: Sun, 12 May 2019 11:02:21 +0000 (+0200) Subject: Remove an unnecessary class destructor X-Git-Tag: v9.1.0-rc1~50^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F8110%2Fhead;p=dealii.git Remove an unnecessary class destructor --- diff --git a/examples/step-44/step-44.cc b/examples/step-44/step-44.cc index f57067007e..610eaaa9b4 100644 --- a/examples/step-44/step-44.cc +++ b/examples/step-44/step-44.cc @@ -813,8 +813,6 @@ namespace Step44 public: Solid(const std::string &input_file); - virtual ~Solid(); - void run(); private: @@ -1080,13 +1078,6 @@ namespace Step44 determine_component_extractors(); } - // The class destructor simply clears the data held by the DOFHandler - template - Solid::~Solid() - { - dof_handler.clear(); - } - // In solving the quasi-static problem, the time becomes a loading parameter, // i.e. we increasing the loading linearly with time, making the two concepts