Minor bugfix in DDVector.

This commit is contained in:
Yury Melnichek 2010-12-30 02:25:23 +01:00 committed by Alex Zolotarev
parent 8cf2cb5d22
commit 35a16437cd

View file

@ -69,7 +69,10 @@ public:
{
ASSERT_LESS(m_I, m_Size, (m_bValueRead));
if (!m_bValueRead)
{
ReadFromPos(*m_pReader, m_I * sizeof(T), &m_Value, sizeof(T));
m_bValueRead = true;
}
return m_Value;
}