]> SALOME platform Git repositories - modules/hexablock.git/commitdiff
Salome HOME
#18963 Change throw() -> noexcept
authorvsr <vsr@opencascade.com>
Wed, 16 Dec 2020 17:06:01 +0000 (20:06 +0300)
committervsr <vsr@opencascade.com>
Wed, 16 Dec 2020 17:06:01 +0000 (20:06 +0300)
src/HEXABLOCKGUI/HEXABLOCKGUI_Exception.cxx
src/HEXABLOCKGUI/HEXABLOCKGUI_Exception.hxx

index 332dad6619f147258ef37e902b08db18e508e3de..acc6aecae38c0ce21fbd1f96dea898ef0a4a0332 100644 (file)
@@ -48,11 +48,11 @@ Exception::Exception(const std::string& what):_what(what)
 #endif
 }
 
-const char *Exception::what( void ) const throw ()
+const char *Exception::what( void ) const noexcept
 {
   return _what.c_str();
 }
 
-Exception::~Exception() throw ()
+Exception::~Exception() noexcept
 {
 }
index 70e40d897e72fdfa96d4eed347d429abc2bd85c3..d309247aa3bff79739e04386340eb329a49c3e23 100644 (file)
@@ -35,8 +35,8 @@ namespace HEXABLOCK
       std::string _what;
     public:
       Exception(const std::string& what);
-      const char *what( void ) const throw ();
-      virtual ~Exception() throw ();
+      const char *what( void ) const noexcept;
+      virtual ~Exception() noexcept;
     };
   }
 }