Remove usage of boost::forward

This commit is contained in:
Christian Mazakas
2023-08-29 11:28:55 -07:00
parent 16386f586f
commit f088a5b9b9
12 changed files with 211 additions and 211 deletions

View File

@@ -518,7 +518,7 @@ namespace test {
UNORDERED_SCOPE(allocator::construct(U*, BOOST_FWD_REF(Args)...))
{
UNORDERED_EPOINT("Mock allocator construct function.")
new (p) U(boost::forward<Args>(args)...);
new (p) U(std::forward<Args>(args)...);
}
test::detail::tracker.track_construct((void*)p, sizeof(U), tag_);
}
@@ -700,7 +700,7 @@ namespace test {
UNORDERED_SCOPE(allocator2::construct(U*, BOOST_FWD_REF(Args)...))
{
UNORDERED_EPOINT("Mock allocator2 construct function.")
new (p) U(boost::forward<Args>(args)...);
new (p) U(std::forward<Args>(args)...);
}
test::detail::tracker.track_construct((void*)p, sizeof(U), tag_);
}