From: Wolfgang Bangerth Date: Sat, 25 May 2024 03:43:50 +0000 (-0600) Subject: step-53: Minor edit. X-Git-Tag: v9.6.0-rc1~222^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=419f6c881f2d994cde013e86488cd2adb42a37d0;p=dealii.git step-53: Minor edit. --- diff --git a/examples/step-53/step-53.cc b/examples/step-53/step-53.cc index d6b749f31c..0a511ec3f7 100644 --- a/examples/step-53/step-53.cc +++ b/examples/step-53/step-53.cc @@ -128,7 +128,7 @@ namespace Step53 // just another input stream that, for all practical purposes, looks just like // the ones we always use. // - // When reading the data, we read the three columns but throw ignore the + // When reading the data, we read the three columns but ignore the // first two. The datum in the last column is appended to an array that we // the return and that will be copied into the table from which // topography_data is initialized. Since the BOOST.iostreams @@ -146,7 +146,6 @@ namespace Step53 { std::vector data; - // create a stream where we read from gzipped data boost::iostreams::filtering_istream in; in.push(boost::iostreams::basic_gzip_decompressor<>()); in.push(boost::iostreams::file_source("topography.txt.gz"));