From: Wolfgang Bangerth Date: Tue, 23 Apr 2002 10:28:57 +0000 (+0000) Subject: Fix typo. X-Git-Tag: v8.0.0~18134 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46dcb8e5c73b43aa3657e9a6368a4c3b59ccf611;p=dealii.git Fix typo. git-svn-id: https://svn.dealii.org/trunk@5714 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-14/step-14.cc b/deal.II/examples/step-14/step-14.cc index a821c34623..e3b5b5b4b7 100644 --- a/deal.II/examples/step-14/step-14.cc +++ b/deal.II/examples/step-14/step-14.cc @@ -1226,7 +1226,7 @@ namespace LaplaceSolver Vector error_indicators (triangulation->n_active_cells()); estimate_error (error_indicators); DataOut data_out; - ofstream x("x"); + std::ofstream x("x"); Vector xe (error_indicators.begin(), error_indicators.end()); data_out.attach_dof_handler (DualSolver::dof_handler);