diff --git a/lib/atc/SparseMatrix-inl.h b/lib/atc/SparseMatrix-inl.h index 671e87dc57..5d3e747dfb 100644 --- a/lib/atc/SparseMatrix-inl.h +++ b/lib/atc/SparseMatrix-inl.h @@ -701,7 +701,7 @@ DenseVector SparseMatrix::column_count() const { compress(*this); INDEX i,j; - Vector counts(nCols()); + DenseVector counts(nCols()); for (i=0; i<_nRowsCRS; i++) for(j=_ia[i]; j<_ia[i+1]; j++) counts(_ja[j])++;