Subject: [boost] BOOST_NOEXCEPT macro?
From: Beman Dawes (bdawes_at_[hidden])
Date: 2011-02-17 07:53:21


Should we add a BOOST_NO_NOEXCEPT config macro, and then provide a
header with something like:

#ifdef BOOST_NO_NOEXCEPT
# define BOOST_NOEXCEPT throw()
#else
# define BOOST_NOEXCEPT noexcept
#endif

--Beman