Update changelog with #43

Fix BOOST_INTRUSIVE_VARIADIC_TEMPLATES detection
This commit is contained in:
Ion Gaztañaga
2019-05-10 23:50:53 +02:00
parent ee69f1ff45
commit 2af47857f4
2 changed files with 11 additions and 0 deletions

View File

@@ -3881,6 +3881,13 @@ to be inserted in intrusive containers are allocated using `std::vector` or `std
[section:release_notes Release Notes]
[section:release_notes_boost_1_71_00 Boost 1.71 Release]
* Fixed bugs:
* [@https://github.com/boostorg/intrusive/pull/43 GitHub #43: ['Fix tests with BOOST_INTRUSIVE_VARIADIC_TEMPLATES enabled]]
[endsect]
[section:release_notes_boost_1_70_00 Boost 1.70 Release]
* Fixed bugs:

View File

@@ -23,6 +23,10 @@
#include <boost/config.hpp>
#endif
#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
#define BOOST_INTRUSIVE_VARIADIC_TEMPLATES
#endif
#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) && !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
#define BOOST_INTRUSIVE_PERFECT_FORWARDING
#endif