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

index 5f867e9db9fc933e879deb582f89efd371871e3e..6d659dd389c7fe173ac3af028ebc07b0c8f715ae 100644 (file)
@@ -23,12 +23,12 @@ BL::Exception::Exception(const std::string& what):_what(what)
 {
 }
 
-BL::Exception::~Exception() throw ()
+BL::Exception::~Exception() noexcept
 {
 }
 
 const char *
-BL::Exception::what( void ) const throw ()
+BL::Exception::what( void ) const noexcept
 {
   return _what.c_str();
 }
index c93414e669c5c5cf92cab1143ad930d4562185e3..688cfcb730cc83e00458fc0e090c41aa10659145 100644 (file)
@@ -40,8 +40,8 @@ namespace BL
     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;
   };
 }