From 07103d6570f9d89ad2bdf05c3758addeaad78443 Mon Sep 17 00:00:00 2001 From: Mattia Basaglia Date: Sat, 29 Jan 2022 23:44:48 +0100 Subject: [PATCH] Remove extra semicolon (#3666) --- include/pybind11/detail/internals.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pybind11/detail/internals.h b/include/pybind11/detail/internals.h index 462d32474..5c11b40a4 100644 --- a/include/pybind11/detail/internals.h +++ b/include/pybind11/detail/internals.h @@ -322,7 +322,7 @@ inline bool raise_err(PyObject *exc_type, const char *msg) { #endif PyErr_SetString(exc_type, msg); return false; -}; +} inline void translate_exception(std::exception_ptr p) { if (!p) {