diff --git a/core/sourcehook/sh_vector.h b/core/sourcehook/sh_vector.h index 34383ae..9e682a1 100755 --- a/core/sourcehook/sh_vector.h +++ b/core/sourcehook/sh_vector.h @@ -282,14 +282,14 @@ public: }; // constructors / destructors - CVector() + CVector() { m_Size = 0; m_CurrentUsedSize = 0; m_Data = NULL; } - CVector(const CVector & other) + CVector(const CVector & other) { // copy data m_Data = new T [other.m_CurrentUsedSize]; @@ -299,7 +299,7 @@ public: m_Data[i] = other.m_Data[i]; } - ~CVector() + ~CVector() { clear(); }