From 419f6c881f2d994cde013e86488cd2adb42a37d0 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 24 May 2024 21:43:50 -0600 Subject: [PATCH] step-53: Minor edit. --- examples/step-53/step-53.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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")); -- 2.39.5