From 9237868f449e2b97b3a3db3cc0aa17ade5c7e8e9 Mon Sep 17 00:00:00 2001 From: ulukyn Date: Fri, 17 Aug 2018 17:35:42 +0200 Subject: [PATCH] Fixed: Revert remove of throw in EPatchDownloadException --HG-- branch : compatibility-develop --- code/ryzom/client/src/login_patch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ryzom/client/src/login_patch.cpp b/code/ryzom/client/src/login_patch.cpp index 6a3500ae0..f4e7e237f 100644 --- a/code/ryzom/client/src/login_patch.cpp +++ b/code/ryzom/client/src/login_patch.cpp @@ -101,7 +101,7 @@ struct EPatchDownloadException : public Exception { EPatchDownloadException() : Exception( "Download Error" ) {} EPatchDownloadException( const std::string& str ) : Exception( str ) {} - virtual ~EPatchDownloadException() {} + virtual ~EPatchDownloadException() throw(){} };