From 0bc6aaf36f1bfea7798b54cd57f9663789d8a479 Mon Sep 17 00:00:00 2001 From: Jean-Paul Pelteret Date: Sun, 12 May 2019 13:02:21 +0200 Subject: [PATCH] Remove an unnecessary class destructor --- examples/step-44/step-44.cc | 9 --------- 1 file changed, 9 deletions(-) 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 -- 2.39.5