From: Wolfgang Bangerth Date: Mon, 6 May 2024 11:36:39 +0000 (+0530) Subject: Rename a poorly named variable. X-Git-Tag: v9.6.0-rc1~316^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F16971%2Fhead;p=dealii.git Rename a poorly named variable. --- diff --git a/examples/step-15/step-15.cc b/examples/step-15/step-15.cc index b732cfcb1e..81912bebe8 100644 --- a/examples/step-15/step-15.cc +++ b/examples/step-15/step-15.cc @@ -695,8 +695,8 @@ int main() { using namespace Step15; - MinimalSurfaceProblem<2> laplace_problem_2d; - laplace_problem_2d.run(); + MinimalSurfaceProblem<2> problem; + problem.run(); } catch (std::exception &exc) {