From 93c1474b484fb6e2965d195ad57c50e53422ccb1 Mon Sep 17 00:00:00 2001 From: David Wells Date: Thu, 16 Apr 2020 16:43:11 -0400 Subject: [PATCH] step-8: remove destructor. step-6 no longer has a destructor anyway (see aae3ab83d2). --- examples/step-8/step-8.cc | 12 ------------ 1 file changed, 12 deletions(-) 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 -- 2.39.5