From 3719f707eb8e6564f5c409119c833e5115bea7ee Mon Sep 17 00:00:00 2001 From: Michael MIGLIORE Date: Sat, 24 Aug 2024 11:56:38 +0200 Subject: [PATCH] Remove noexcept from default constructor (#1589) --- library/public/options.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/public/options.h.in b/library/public/options.h.in index 81b1e1fbfd..6468d26bea 100644 --- a/library/public/options.h.in +++ b/library/public/options.h.in @@ -38,7 +38,7 @@ public: options(); ~options() = default; options(const options& opt) = default; - options& operator=(const options& opt) noexcept = default; + options& operator=(const options& opt) = default; options(options&& other) noexcept = default; options& operator=(options&& other) noexcept = default; ///@}