From 27486f6fe87cdb7962c70befe9bc87af50426c78 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 30 May 2025 17:54:21 -0600 Subject: [PATCH] Add necessary C++ headers to step-11 and step-51. --- examples/step-11/step-11.cc | 7 +++++-- examples/step-51/step-51.cc | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) 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 -- 2.39.5