refactor: rename RCollector.std_copy_for -> std_move_for
This commit is contained in:
parent
a08fe61a45
commit
499ff68ef0
5 changed files with 5 additions and 5 deletions
|
|
@ -85,7 +85,7 @@ namespace xo {
|
|||
DArrayType *
|
||||
DArrayType::shallow_move(obj<ACollector> gc) noexcept
|
||||
{
|
||||
return gc.std_copy_for(this);
|
||||
return gc.std_move_for(this);
|
||||
}
|
||||
|
||||
std::size_t
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ namespace xo {
|
|||
DAtomicType *
|
||||
DAtomicType::shallow_move(obj<ACollector> gc) noexcept
|
||||
{
|
||||
return gc.std_copy_for(this);
|
||||
return gc.std_move_for(this);
|
||||
}
|
||||
|
||||
std::size_t
|
||||
|
|
|
|||
|
|
@ -96,7 +96,7 @@ namespace xo {
|
|||
DFunctionType *
|
||||
DFunctionType::shallow_move(obj<ACollector> gc) noexcept
|
||||
{
|
||||
return gc.std_copy_for(this);
|
||||
return gc.std_move_for(this);
|
||||
}
|
||||
|
||||
std::size_t
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ namespace xo {
|
|||
DListType *
|
||||
DListType::shallow_move(obj<ACollector> gc) noexcept
|
||||
{
|
||||
return gc.std_copy_for(this);
|
||||
return gc.std_move_for(this);
|
||||
}
|
||||
|
||||
std::size_t
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@ namespace xo {
|
|||
DTypeVarRef *
|
||||
DTypeVarRef::shallow_move(obj<ACollector> gc) noexcept
|
||||
{
|
||||
return gc.std_copy_for(this);
|
||||
return gc.std_move_for(this);
|
||||
}
|
||||
|
||||
std::size_t
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue