From a4d33ec8ab37ed0d52e93675f6eb54c9f3fec743 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sat, 19 Nov 2016 13:32:07 +0100 Subject: [PATCH] fixes #0002779: The message of the project build error --- src/Mod/Part/App/Attacher.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Part/App/Attacher.h b/src/Mod/Part/App/Attacher.h index b2d22b637..8e39d2263 100644 --- a/src/Mod/Part/App/Attacher.h +++ b/src/Mod/Part/App/Attacher.h @@ -456,7 +456,7 @@ class ExceptionCancel : public Base::Exception public: ExceptionCancel(){} ExceptionCancel(char* msg){this->setMessage(msg);} - ~ExceptionCancel(){} + virtual ~ExceptionCancel() throw() {} }; } // namespace Attacher