Fixed incorrect forward orders

Fixed bug in CVector
This commit is contained in:
David Anderson
2004-06-30 08:04:12 +00:00
parent ff23a74e9c
commit 3dedf9976b
3 changed files with 18 additions and 12 deletions

View File

@@ -240,6 +240,8 @@ public:
// constructors / destructors
CVector<T>()
{
m_Size = 0;
m_CurrentUsedSize = 0;
m_Data = NULL;
}