STL build fix for MSVS after 948ddc6e0f

This commit is contained in:
Paul Cornett
2020-02-03 09:33:09 -08:00
parent f4299c3c01
commit 1a9da25c33

View File

@@ -391,7 +391,7 @@ public:
void Insert(const T* pItem, size_t uiIndex) 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(); } void Empty() { DoEmpty(); base::clear(); }