From: David Wells Date: Fri, 24 Jul 2015 18:08:46 +0000 (-0400) Subject: Removed an unneeded constructor and comment. X-Git-Tag: v8.4.0-rc2~644^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d530363c51d5bc5ff15dc1fc833b9f878d3cfd24;p=dealii.git Removed an unneeded constructor and comment. --- diff --git a/examples/step-14/step-14.cc b/examples/step-14/step-14.cc index c34c89509a..2cd03db316 100644 --- a/examples/step-14/step-14.cc +++ b/examples/step-14/step-14.cc @@ -1128,17 +1128,13 @@ namespace Step14 // And now for the derived class that takes the template argument as - // explained above. For some reason, C++ requires us to define a - // constructor (which maybe empty), as otherwise a warning is generated - // that some data is not initialized. + // explained above. // // Here we pack the data elements into private variables, and allow access // to them through the methods of the base class. template struct SetUp : public SetUpBase { - SetUp () {} - virtual const Function &get_boundary_values () const;