From: Wolfgang Bangerth Date: Sun, 6 Nov 2016 01:57:59 +0000 (-0600) Subject: Add a (disabled) copy operator to ExceptionBase. X-Git-Tag: v8.5.0-rc1~452^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00f81caf57ad742ce0dea682db8c843ad905339b;p=dealii.git Add a (disabled) copy operator to ExceptionBase. --- 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(). */