From: Daniel Arndt Date: Mon, 18 Nov 2019 13:56:01 +0000 (-0500) Subject: Defaulted copy constructor for Function X-Git-Tag: v9.2.0-rc1~869^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=639a64f8eeefc1a60cdb14da29673e3ef8ba3774;p=dealii.git Defaulted copy constructor for Function --- diff --git a/include/deal.II/base/function.h b/include/deal.II/base/function.h index 205f1bcf0d..dce4b2076b 100644 --- a/include/deal.II/base/function.h +++ b/include/deal.II/base/function.h @@ -177,6 +177,11 @@ public: Function(const unsigned int n_components = 1, const time_type initial_time = 0.0); + /** + * Copy constructor. + */ + Function(const Function &f) = default; + /** * Virtual destructor; absolutely necessary in this case. *