From: Wolfgang Bangerth Date: Sat, 2 May 2020 18:10:04 +0000 (-0600) Subject: Remove a comment no longer relevant. X-Git-Tag: v9.2.0-rc1~57^2~4 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2837db780527b076833b4a520457793641e4b4be;p=dealii.git Remove a comment no longer relevant. --- diff --git a/examples/step-69/step-69.cc b/examples/step-69/step-69.cc index e530648acf..8195c45916 100644 --- a/examples/step-69/step-69.cc +++ b/examples/step-69/step-69.cc @@ -1250,16 +1250,6 @@ namespace Step69 // to carry out (computation and storage of normals, and normalization // of the $\mathbf{c}_{ij}$ of entries) threads cannot conflict // attempting to write the same entry (we do not need a scheduler). - // - // We have one more difficulty to overcome: In order to implement the - // on_subranges lambda we need to name the iterator type - // of the object returned by std_cxx20::ranges::iota_view%(). This is unfortunately a very convoluted name exposing - // implementation details about std_cxx20::ranges::iota_view. - // For this reason we resort to the decltype - // specifier, a C++11 feature that returns the type of an entity, or - // expression. { TimerOutput::Scope scope(computing_timer, "offline_data - compute |c_ij|, and n_ij");