mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-11 22:03:09 -06:00
Core: Array::AppendPick fixed
git-svn-id: svn://ultimatepp.org/upp/trunk@1615 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
00a3f8b840
commit
1693158ce3
1 changed files with 1 additions and 1 deletions
|
|
@ -171,7 +171,7 @@ public:
|
|||
void Append(const Array& x) { Insert(GetCount(), x); }
|
||||
void Append(const Array& x, int o, int c) { Insert(GetCount(), x, o, c); }
|
||||
void InsertPick(int i, pick_ Array& x) { vector.InsertPick(i, x.vector); }
|
||||
void AppendPick(pick_ Array& x) { Insert(GetCount(), x); }
|
||||
void AppendPick(pick_ Array& x) { InsertPick(GetCount(), x); }
|
||||
int GetIndex(const T& item) const;
|
||||
void Swap(int i1, int i2) { UPP::Swap(vector[i1], vector[i2]); }
|
||||
void Move(int i1, int i2);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue