From 00f81caf57ad742ce0dea682db8c843ad905339b Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 5 Nov 2016 19:57:59 -0600 Subject: [PATCH] Add a (disabled) copy operator to ExceptionBase. --- include/deal.II/base/exceptions.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/deal.II/base/exceptions.h b/include/deal.II/base/exceptions.h index dab519cdc7..8649ee67fe 100644 --- a/include/deal.II/base/exceptions.h +++ b/include/deal.II/base/exceptions.h @@ -142,6 +142,11 @@ protected: #endif private: + /** + * Copy operator. Made private since it is not used and not implemented. + */ + ExceptionBase operator= (const ExceptionBase &exc); + /** * Internal function that generates the c_string. Called by what(). */ -- 2.39.5