From f43b1a91db167f1a38584955737b076bb419d673 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 24 Oct 2019 10:21:30 -0600 Subject: [PATCH] Also delete the FunctionParser operator=. --- include/deal.II/base/function_parser.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/deal.II/base/function_parser.h b/include/deal.II/base/function_parser.h index 4aa601daf3..739f8b22bb 100644 --- a/include/deal.II/base/function_parser.h +++ b/include/deal.II/base/function_parser.h @@ -258,6 +258,13 @@ public: */ ~FunctionParser() override; + /** + * Copy operator. Objects of this type can not be copied, and + * consequently this operator is deleted. + */ + FunctionParser & + operator=(const FunctionParser &) = delete; + /** * Type for the constant map. Used by the initialize() method. */ -- 2.39.5