From: David Wells Date: Sat, 18 Mar 2017 20:41:08 +0000 (-0400) Subject: Remove an unnecessary destructor implementation. X-Git-Tag: v8.5.0-rc1~25^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=251dc1bee30e6b6e521288dcd7cf184d229eabbc;p=dealii.git Remove an unnecessary destructor implementation. The default is equal to this. --- diff --git a/examples/step-35/step-35.cc b/examples/step-35/step-35.cc index 935ddd7940..40842125f9 100644 --- a/examples/step-35/step-35.cc +++ b/examples/step-35/step-35.cc @@ -98,7 +98,7 @@ namespace Step35 { public: Data_Storage(); - ~Data_Storage(); + void read_data (const char *filename); MethodFormulation form; double initial_time, @@ -214,11 +214,6 @@ namespace Step35 - Data_Storage::~Data_Storage() - {} - - - void Data_Storage::read_data (const char *filename) { std::ifstream file (filename);