Skip to content
Snippets Groups Projects
Commit 16ade296 authored by Uli Sack's avatar Uli Sack Committed by usack
Browse files

uuuaahsvn diff operators/sumoperator.hh missing 'return' statement; why the...

uuuaahsvn diff operators/sumoperator.hh  missing 'return' statement; why the hell doesn't the compiler warn about it and produce actually working code when no optimization is done

[[Imported from SVN: r5795]]
parent e586f82c
No related branches found
No related tags found
No related merge requests found
......@@ -67,13 +67,13 @@ class SumOperator
//! return the number of rows
const size_t N() const
{
sparse_matrix_->N();
return sparse_matrix_->N();
}
//! return the number of columns
const size_t M() const
{
sparse_matrix_->M();
return sparse_matrix_->M();
}
//! return one summand
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment