From: David Wells Date: Thu, 16 Apr 2020 20:43:11 +0000 (-0400) Subject: step-8: remove destructor. X-Git-Tag: v9.2.0-rc1~211^2~3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93c1474b484fb6e2965d195ad57c50e53422ccb1;p=dealii.git step-8: remove destructor. step-6 no longer has a destructor anyway (see aae3ab83d2). --- diff --git a/examples/step-8/step-8.cc b/examples/step-8/step-8.cc index 122ece1bec..f334900642 100644 --- a/examples/step-8/step-8.cc +++ b/examples/step-8/step-8.cc @@ -82,7 +82,6 @@ namespace Step8 { public: ElasticProblem(); - ~ElasticProblem(); void run(); private: @@ -202,17 +201,6 @@ namespace Step8 // these possibilities in later examples. - - // @sect4{ElasticProblem::~ElasticProblem destructor} - - // The destructor, on the other hand, is exactly as in step-6: - template - ElasticProblem::~ElasticProblem() - { - dof_handler.clear(); - } - - // @sect4{ElasticProblem::setup_system} // Setting up the system of equations is identical to the function used in