Remove BOOST_FWD_REF

This commit is contained in:
Christian Mazakas
2023-08-30 15:31:46 -07:00
parent 4cd1827104
commit 866ab46385
8 changed files with 61 additions and 342 deletions

View File

@@ -214,21 +214,12 @@ namespace test
::operator delete((void*)p);
}
#if defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
template <class U, class V>
void construct(U* p, V const& v)
{
detail::tracker.track_construct((void*)p, sizeof(U), tag_);
new (p) U(v);
}
#else
template <class U, typename... Args>
void construct(U* p, BOOST_FWD_REF(Args)... args)
void construct(U* p, Args&&... args)
{
detail::tracker.track_construct((void*)p, sizeof(U), tag_);
new (p) U(std::forward<Args>(args)...);
}
#endif
template <class U>
void destroy(U* p)