From: Guido Kanschat Date: Fri, 14 Dec 2001 13:39:02 +0000 (+0000) Subject: wrong ostream replaced and std:: before ends and endl X-Git-Tag: v8.0.0~18500 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0af1119a45f35303ff86ffeb58bbf215209bd3bd;p=dealii.git wrong ostream replaced and std:: before ends and endl git-svn-id: https://svn.dealii.org/trunk@5335 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/block_matrix_array.h b/deal.II/lac/include/lac/block_matrix_array.h index 4b3fe35011..e3c5d66365 100644 --- a/deal.II/lac/include/lac/block_matrix_array.h +++ b/deal.II/lac/include/lac/block_matrix_array.h @@ -493,7 +493,7 @@ BlockMatrixArray::print_latex (ostream& out) const { out << "\\begin{array}{" << string(n_block_cols(), 'c') - << "}" << endl; + << "}" << std::endl; vector2d array(n_block_rows(), n_block_cols()); typedef map NameMap; @@ -512,7 +512,7 @@ BlockMatrixArray::print_latex (ostream& out) const pair (m->matrix, string("M"))); STRINGSTREAM stream; stream << matrix_number++; - stream << ends; + stream << std::ends; x.first->second += stream.str(); } @@ -522,16 +522,16 @@ BlockMatrixArray::print_latex (ostream& out) const stream << matrix_names.find(m->matrix)->second; if (m->transpose) stream << "^T"; - stream << ends; + stream << std::ends; array(m->row, m->col) += stream.str(); } for (unsigned int i=0;i