From 6c97e6827ededf5380323b76e8bfc8c650c9ccf2 Mon Sep 17 00:00:00 2001 From: Aaron Gokaslan Date: Tue, 22 Feb 2022 11:32:30 -0500 Subject: [PATCH] Revert noexcept --- include/pybind11/pytypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pybind11/pytypes.h b/include/pybind11/pytypes.h index b4798cc75..75c03d128 100644 --- a/include/pybind11/pytypes.h +++ b/include/pybind11/pytypes.h @@ -391,7 +391,7 @@ public: } error_already_set(const error_already_set &) = default; - error_already_set(error_already_set &&) noexcept = default; + error_already_set(error_already_set &&) = default; inline ~error_already_set() override;