STL build fix for MSVS after 948ddc6e0f
This commit is contained in:
parent
f4299c3c01
commit
1a9da25c33
1 changed files with 1 additions and 1 deletions
|
|
@ -391,7 +391,7 @@ public:
|
|||
|
||||
void Insert(const T* pItem, size_t uiIndex)
|
||||
{
|
||||
base::insert(this->begin() + uiIndex, pItem);
|
||||
base::insert(this->begin() + uiIndex, const_cast<T*>(pItem));
|
||||
}
|
||||
|
||||
void Empty() { DoEmpty(); base::clear(); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue