From 639a64f8eeefc1a60cdb14da29673e3ef8ba3774 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Mon, 18 Nov 2019 08:56:01 -0500 Subject: [PATCH] Defaulted copy constructor for Function --- include/deal.II/base/function.h | 5 +++++ 1 file changed, 5 insertions(+) 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. * -- 2.39.5