From: Peter Munch Date: Wed, 17 Jun 2020 19:05:21 +0000 (+0200) Subject: Specify std namespace X-Git-Tag: v9.3.0-rc1~1428^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10541%2Fhead;p=dealii.git Specify std namespace --- diff --git a/include/deal.II/grid/grid_out.h b/include/deal.II/grid/grid_out.h index c16398b211..6af4b566b7 100644 --- a/include/deal.II/grid/grid_out.h +++ b/include/deal.II/grid/grid_out.h @@ -949,7 +949,7 @@ namespace GridOutFlags * * Usage is simple: either you use the direct form * @code - * ofstream output_file("some_filename"); + * std::ofstream output_file("some_filename"); * GridOut().write_gnuplot (tria, output_file); * @endcode * if you know which format you want to have, or if you want the format to be @@ -957,8 +957,8 @@ namespace GridOutFlags * @code * GridOut::OutputFormat grid_format = * GridOut::parse_output_format(get_format_name_from_somewhere()); - * ofstream output_file("some_filename" - * + GridOut::default_suffix(output_format)); + * std::ofstream output_file("some_filename" + * + GridOut::default_suffix(output_format)); * GridOut().write (tria, output_file, output_format); * @endcode * The function get_output_format_names() provides a list of possible