From: Wolfgang Bangerth Date: Fri, 30 May 2025 23:54:21 +0000 (-0600) Subject: Add necessary C++ headers to step-11 and step-51. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F18528%2Fhead;p=dealii.git Add necessary C++ headers to step-11 and step-51. --- diff --git a/examples/step-11/step-11.cc b/examples/step-11/step-11.cc index f1afbc1034..8ae303f164 100644 --- a/examples/step-11/step-11.cc +++ b/examples/step-11/step-11.cc @@ -43,9 +43,12 @@ // further down below. #include -// We will make use of the std::find algorithm of the C++ standard library, so -// we have to include the following file for its declaration: +// We will make use of the `std::find` algorithm of the C++ standard +// library, so we have to include the following file for its +// declaration, along with the other standard header files we will +// use: #include +#include #include #include #include diff --git a/examples/step-51/step-51.cc b/examples/step-51/step-51.cc index 03ca79f7d3..365b10a350 100644 --- a/examples/step-51/step-51.cc +++ b/examples/step-51/step-51.cc @@ -72,6 +72,7 @@ // the simulation. #include +#include #include