From 0af1119a45f35303ff86ffeb58bbf215209bd3bd Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Fri, 14 Dec 2001 13:39:02 +0000 Subject: [PATCH] wrong ostream replaced and std:: before ends and endl git-svn-id: https://svn.dealii.org/trunk@5335 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/block_matrix_array.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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