From ecd5c207cfbd8195e47f910491a4f5eba2feef57 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sun, 24 Mar 2024 16:45:43 +0000 Subject: [PATCH] Remove throw() specification. --- include/boost/regex/v5/basic_regex.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/v5/basic_regex.hpp b/include/boost/regex/v5/basic_regex.hpp index 5c73775f..230dc514 100644 --- a/include/boost/regex/v5/basic_regex.hpp +++ b/include/boost/regex/v5/basic_regex.hpp @@ -488,7 +488,7 @@ public: } // // swap: - void swap(basic_regex& that)throw() + void swap(basic_regex& that)noexcept { m_pimpl.swap(that.m_pimpl); }