Merge pull request #6304 from razvanc-r/master
(Array) .pop_front, .pop_back & .remove return values instead of void
This commit is contained in:
commit
cf4693cf18
3 changed files with 19 additions and 9 deletions
|
|
@ -465,8 +465,8 @@ static void _call_##m_type##_##m_method(Variant& r_ret,Variant& p_self,const Var
|
|||
VCALL_LOCALMEM0R(Array,hash);
|
||||
VCALL_LOCALMEM1(Array,push_back);
|
||||
VCALL_LOCALMEM1(Array,push_front);
|
||||
VCALL_LOCALMEM0(Array,pop_back);
|
||||
VCALL_LOCALMEM0(Array,pop_front);
|
||||
VCALL_LOCALMEM0R(Array,pop_back);
|
||||
VCALL_LOCALMEM0R(Array,pop_front);
|
||||
VCALL_LOCALMEM1(Array,append);
|
||||
VCALL_LOCALMEM1(Array,resize);
|
||||
VCALL_LOCALMEM2(Array,insert);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue