diff options
author | Gael Guennebaud <g.gael@free.fr> | 2014-04-01 11:21:14 +0200 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2014-04-01 11:21:14 +0200 |
commit | 1221dd90aad41fdd610bed108c5f2f7af283dba7 (patch) | |
tree | 56610e5cd92b68070d2eeda6aa09928315606fa0 /unsupported | |
parent | fb03b56647e299428c03e3b1c3a01f3318e1af7e (diff) |
Fix no newline at end of file warning
Diffstat (limited to 'unsupported')
-rw-r--r-- | unsupported/Eigen/src/SparseExtra/MarketIO.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unsupported/Eigen/src/SparseExtra/MarketIO.h b/unsupported/Eigen/src/SparseExtra/MarketIO.h index 7aafce928..1c40d3f7c 100644 --- a/unsupported/Eigen/src/SparseExtra/MarketIO.h +++ b/unsupported/Eigen/src/SparseExtra/MarketIO.h @@ -238,9 +238,9 @@ bool saveMarket(const SparseMatrixType& mat, const std::string& filename, int sy for(int j=0; j<mat.outerSize(); ++j) for(typename SparseMatrixType::InnerIterator it(mat,j); it; ++it) { - ++ count; - internal::PutMatrixElt(it.value(), it.row()+1, it.col()+1, out); - // out << it.row()+1 << " " << it.col()+1 << " " << it.value() << "\n"; + ++ count; + internal::PutMatrixElt(it.value(), it.row()+1, it.col()+1, out); + // out << it.row()+1 << " " << it.col()+1 << " " << it.value() << "\n"; } out.close(); return true; |