Remove extra semicolon (#3666)

This commit is contained in:
Mattia Basaglia 2022-01-29 23:44:48 +01:00 committed by GitHub
parent 177928840e
commit 07103d6570
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -322,7 +322,7 @@ inline bool raise_err(PyObject *exc_type, const char *msg) {
#endif #endif
PyErr_SetString(exc_type, msg); PyErr_SetString(exc_type, msg);
return false; return false;
}; }
inline void translate_exception(std::exception_ptr p) { inline void translate_exception(std::exception_ptr p) {
if (!p) { if (!p) {