From e75fa9329b11da19f51fe3128f34710e43a41b93 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 12 Jun 2017 15:53:16 +0300 Subject: [PATCH] Remove noexcept on ~local_counted_base for g++ 4.7 --- include/boost/smart_ptr/detail/local_counted_base.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/smart_ptr/detail/local_counted_base.hpp b/include/boost/smart_ptr/detail/local_counted_base.hpp index f0b5378..46408c3 100644 --- a/include/boost/smart_ptr/detail/local_counted_base.hpp +++ b/include/boost/smart_ptr/detail/local_counted_base.hpp @@ -48,7 +48,7 @@ public: { } - virtual ~local_counted_base() BOOST_NOEXCEPT + virtual ~local_counted_base() /*BOOST_NOEXCEPT*/ { }