From: Wolfgang Bangerth Date: Fri, 2 Dec 2022 22:49:12 +0000 (-0700) Subject: Just do 'using namespace dealii' in main(). X-Git-Tag: v9.5.0-rc1~765^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F14523%2Fhead;p=dealii.git Just do 'using namespace dealii' in main(). --- diff --git a/examples/step-12b/step-12b.cc b/examples/step-12b/step-12b.cc index 7a7b03ba52..83a0462649 100644 --- a/examples/step-12b/step-12b.cc +++ b/examples/step-12b/step-12b.cc @@ -640,7 +640,8 @@ int main() { try { - dealii::deallog.depth_console(5); + using namespace dealii; + deallog.depth_console(5); Step12::AdvectionProblem<2> dgmethod; dgmethod.run(); diff --git a/examples/step-81/step-81.cc b/examples/step-81/step-81.cc index 1caef9e297..2e3df44434 100644 --- a/examples/step-81/step-81.cc +++ b/examples/step-81/step-81.cc @@ -870,8 +870,10 @@ int main() { try { + using namespace dealii; + Step81::Maxwell<2> maxwell_2d; - dealii::ParameterAcceptor::initialize("parameters.prm"); + ParameterAcceptor::initialize("parameters.prm"); maxwell_2d.run(); } catch (std::exception &exc)