refactor: rename RCollector.std_copy_for -> std_move_for

This commit is contained in:
Roland Conybeare 2026-04-04 16:37:17 -04:00
commit 4ddef4fb29

View file

@ -55,7 +55,7 @@ public:
/** convenience template for move-constructible T (this is common) **/
template <typename T>
T * std_copy_for(T * src) noexcept {
T * std_move_for(T * src) noexcept {
void * mem = this->alloc_copy_for(src);
if (mem) {
return new (mem) T(std::move(*src));