modernize C++: use noexcept

This commit is contained in:
wmayer
2023-08-07 11:00:14 +02:00
committed by wwmayer
parent df93b14ec0
commit 31ed14db83
8 changed files with 55 additions and 53 deletions

View File

@@ -93,7 +93,7 @@ PyException::PyException()
PyErr_Clear(); // must be called to keep Python interpreter in a valid state (Werner)
}
PyException::~PyException() throw() = default;
PyException::~PyException() noexcept = default;
void PyException::ThrowException()
{