Fix warning (although I think the compiler should really be able to figure this one out on its own).

This commit is contained in:
Steve Checkoway
2006-07-18 02:29:10 +00:00
parent 4efb7c4078
commit fbbdc5657a
+1 -1
View File
@@ -68,7 +68,7 @@ public:
{
if( iRow < m_iStart ) return true;
if( iRow >= m_iStart+m_iLen ) Resize( iRow+1-m_iStart );
const bool ret = m_pRows[(iRow-m_iStart+m_iOffset)%m_iLen];
const bool ret = m_pRows[(iRow-m_iStart+m_iOffset)%m_iLen] != 0;
m_pRows[(iRow-m_iStart+m_iOffset)%m_iLen] = 1;
while( m_pRows[m_iOffset] )
{