Salome HOME
#18963 Additional changes: throw() -> noexcept
authorvsr <vsr@opencascade.com>
Wed, 16 Dec 2020 12:17:52 +0000 (15:17 +0300)
committervsr <vsr@opencascade.com>
Wed, 16 Dec 2020 12:17:52 +0000 (15:17 +0300)
src/MEDCalc/cmp/MEDPresentationException.hxx

index b3070dc8abd0ba3d72f6a87f8c288cd3588b8dec..c3ef7a37d471140c899def7feebb7373890fdca1 100644 (file)
@@ -42,9 +42,9 @@ public:
       this->_msg = oss.str();
     }
 
-  virtual ~MEDPresentationException() throw() {}
+  virtual ~MEDPresentationException() noexcept {}
 
-  virtual const char* what() const throw() {
+  virtual const char* what() const noexcept {
     return this->_msg.c_str();
   }