Removed compile warning by initializing imax to 0 in Decompose().
This commit is contained in:
parent
d49e84fb9c
commit
12d5a0e322
|
@ -914,7 +914,7 @@ template <class T> bool LinearSolve<T>::Decompose() {
|
||||||
scaling[i] = (T)1.0 / largest;
|
scaling[i] = (T)1.0 / largest;
|
||||||
}
|
}
|
||||||
|
|
||||||
int imax;
|
int imax = 0;
|
||||||
for(j = 0; j < 4; j++) {
|
for(j = 0; j < 4; j++) {
|
||||||
for(i = 0; i < j; i++) {
|
for(i = 0; i < j; i++) {
|
||||||
T sum = this->ElementAt(i,j);
|
T sum = this->ElementAt(i,j);
|
||||||
|
|
Loading…
Reference in New Issue