Sets - Fixed bug with heap-allocated sets
This commit is contained in:
parent
cdbc81094d
commit
9f666eea49
1 changed files with 2 additions and 2 deletions
|
@ -436,11 +436,11 @@ void T_SetHelper::T_HeapHandler< Type , ImplTag >::shdl(
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case INIT_COPY:
|
case INIT_COPY:
|
||||||
*(T_Impl_**)output = ::new T_Impl_( *(T_Impl_ const**)rArg );
|
*(T_Impl_**)output = ::new T_Impl_( **(T_Impl_ const**)rArg );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case INIT_MOVE:
|
case INIT_MOVE:
|
||||||
*(T_Impl_**)output = ::new T_Impl_( std::move( *(T_Impl_**)wArg ) );
|
*(T_Impl_**)output = ::new T_Impl_( std::move( **(T_Impl_**)wArg ) );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case DESTROY:
|
case DESTROY:
|
||||||
|
|
Loading…
Reference in a new issue