From c13b758be9215c1d1a936134af0d2bd8a25bfd02 Mon Sep 17 00:00:00 2001 From: kervala Date: Thu, 9 Aug 2018 19:47:44 +0200 Subject: [PATCH] Fixed: Warnings, throw(type) deprecated in C++11 and removed in C++17 --HG-- branch : develop --- code/nel/include/nel/net/module.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/nel/include/nel/net/module.h b/code/nel/include/nel/net/module.h index 803fe458c..790a49199 100644 --- a/code/nel/include/nel/net/module.h +++ b/code/nel/include/nel/net/module.h @@ -261,9 +261,7 @@ namespace NLNET * The call is blocking until receptions of the operation * result message (or detection of the dest module module is down) */ - virtual void invokeModuleOperation(IModuleProxy *destModule, const NLNET::CMessage &opMsg, NLNET::CMessage &resultMsg) - throw (EInvokeFailed) - =0; + virtual void invokeModuleOperation(IModuleProxy *destModule, const NLNET::CMessage &opMsg, NLNET::CMessage &resultMsg) =0; //@}