Core: Fixed ValueMap::RemoveKey issue

git-svn-id: svn://ultimatepp.org/upp/trunk@7641 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2014-09-05 13:00:16 +00:00
parent 5a2096839c
commit ca4d6935c7
4 changed files with 19 additions and 5 deletions

View file

@ -246,6 +246,7 @@ public:
Vector<Value> Pick();
void Remove(int i, int count = 1);
void Remove(const Vector<int>& ii);
void Insert(int i, const ValueArray& va);
void Append(const ValueArray& va) { Insert(GetCount(), va); }