Replace ke::Vector with std::vector.

This commit is contained in:
David Anderson
2020-05-31 11:35:51 -07:00
parent e5ddbd9886
commit 5d94f0bea8
41 changed files with 1174 additions and 1174 deletions
+2 -2
View File
@@ -36,12 +36,12 @@ RegNatives g_RegNatives;
void RegNatives::Register(ICallWrapper *pWrapper)
{
m_Natives.append(pWrapper);
m_Natives.push_back(pWrapper);
}
void RegNatives::UnregisterAll()
{
for (size_t iter = 0; iter < m_Natives.length(); ++iter)
for (size_t iter = 0; iter < m_Natives.size(); ++iter)
{
m_Natives[iter]->Destroy();
}
+1 -1
View File
@@ -40,7 +40,7 @@ public:
void Register(ICallWrapper *pWrapper);
void UnregisterAll();
private:
ke::Vector<ICallWrapper *> m_Natives;
std::vector<ICallWrapper *> m_Natives;
};
extern RegNatives g_RegNatives;