mirror of
https://github.com/boostorg/core.git
synced 2026-05-03 19:31:00 +02:00
Renamed boost::swap to boost::core::invoke_swap, deprecated boost::swap.
The rename allows to avoid forming an infinite recursion in compile time (because of noexcept specification that needs to resolve the unqualified call to swap) or run time (in case if the boost::swap function is the only one suitable for the passed arguments). To avoid the compile-time recursion, removed noexcept specification from boost::swap. The specification is still present in boost::core::invoke_swap. Deprecated boost::swap and associated headers. boost::core::invoke_swap is defined in a new boost/core/invoke_swap.hpp header. Updated docs and tests. Removed tests that check inclusion of deprecated headers. Fixes https://github.com/boostorg/core/issues/148.
This commit is contained in:
@@ -10,8 +10,11 @@
|
||||
#define BOOST_UTILITY_SWAP_HPP
|
||||
|
||||
// The header file at this path is deprecated;
|
||||
// use boost/core/swap.hpp instead.
|
||||
// use boost/core/invoke_swap.hpp instead.
|
||||
|
||||
#include <boost/config/header_deprecated.hpp>
|
||||
#include <boost/core/swap.hpp>
|
||||
|
||||
BOOST_HEADER_DEPRECATED("boost/core/invoke_swap.hpp")
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user