Fixed uninitialized variables in unit tests.

Fixed /W4 warning C4512 (LU was left out on purpose).
This commit is contained in:
Hauke Heibel
2009-10-14 08:33:36 +02:00
parent 5e24fbbead
commit ffee27bf72
21 changed files with 87 additions and 6 deletions

View File

@@ -370,6 +370,9 @@ class AmbiVector<_Scalar>::Iterator
int m_cachedIndex; // current coordinate
Scalar m_cachedValue; // current value
bool m_isDense; // mode of the vector
private:
Iterator& operator=(const Iterator&);
};