From 32deca43804bde28bf863cf9e0f9d0f3fbab69f9 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Fri, 19 Dec 2025 21:56:49 -0800 Subject: [PATCH] Remove extraneous semicolon after destructor definition Style fix: remove trailing semicolon after ~call_once_storage() destructor body. --- include/pybind11/gil_safe_call_once.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pybind11/gil_safe_call_once.h b/include/pybind11/gil_safe_call_once.h index 20166ecf0..51e7f0c93 100644 --- a/include/pybind11/gil_safe_call_once.h +++ b/include/pybind11/gil_safe_call_once.h @@ -148,7 +148,7 @@ struct call_once_storage : call_once_storage_base { reinterpret_cast(storage)->~T(); } } - }; + } call_once_storage(const call_once_storage &) = delete; call_once_storage(call_once_storage &&) = delete; call_once_storage &operator=(const call_once_storage &) = delete;