Base: modernize C++11

* use nullptr
This commit is contained in:
wmayer
2022-03-23 16:57:25 +01:00
parent 6cf4b71b0f
commit 882e34f2ce
9 changed files with 17 additions and 17 deletions

View File

@@ -80,7 +80,7 @@ PyException::PyException()
// destroyed, so we don't keep reference here to save book-keeping in
// our copy constructor and destructor
Py_DECREF(PP_last_exception_type);
PP_last_exception_type = 0;
PP_last_exception_type = nullptr;
}