fix a coupe of warnings

This commit is contained in:
Gael Guennebaud
2010-01-05 10:15:29 +01:00
parent 71a171c267
commit 37851cfe11
4 changed files with 8 additions and 4 deletions

View File

@@ -303,6 +303,8 @@ class AmbiVector<_Scalar>::Iterator
m_isDense = m_vector.m_mode==IsDense;
if (m_isDense)
{
m_currentEl = 0; // this is to avoid a compilation warning
m_cachedValue = 0; // this is to avoid a compilation warning
m_cachedIndex = m_vector.m_start-1;
++(*this);
}
@@ -314,6 +316,7 @@ class AmbiVector<_Scalar>::Iterator
m_currentEl = llElements[m_currentEl].next;
if (m_currentEl<0)
{
m_cachedValue = 0; // this is to avoid a compilation warning
m_cachedIndex = -1;
}
else