Skip to content

Commit e341792

Browse files
committed
IndexAllocator small edit
1 parent d6fc699 commit e341792

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

62_CAD/IndexAllocator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class IndexAllocator : public core::IReferenceCounted
3030
{
3131
public:
3232
inline DeferredFreeFunctor(IndexAllocator* composed, size_type count, const value_type* addresses)
33-
: m_addresses(std::move(core::make_refctd_dynamic_array<core::smart_refctd_dynamic_array<value_type>>(count))),
33+
: m_addresses(core::make_refctd_dynamic_array<core::smart_refctd_dynamic_array<value_type>>(count)),
3434
m_parent(composed)
3535
{
3636
memcpy(m_addresses->data(), addresses, count * sizeof(value_type));

0 commit comments

Comments
 (0)