From: young Date: Thu, 28 Mar 2013 16:50:24 +0000 (+0000) Subject: Fix step-36: Use namespace dealii before calling dealii functions. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aed6f13b09ce71b5303507026ace6185a90a59ce;p=dealii-svn.git Fix step-36: Use namespace dealii before calling dealii functions. git-svn-id: https://svn.dealii.org/trunk@29104 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-36/step-36.cc b/deal.II/examples/step-36/step-36.cc index 6a4fc8651c..665301d399 100644 --- a/deal.II/examples/step-36/step-36.cc +++ b/deal.II/examples/step-36/step-36.cc @@ -425,12 +425,11 @@ int main (int argc, char **argv) { try { + using namespace dealii; + using namespace Step36; Utilities::MPI::MPI_InitFinalize mpi_initialization(argc, argv, 1); { - using namespace dealii; - using namespace Step36; - deallog.depth_console (0); EigenvalueProblem<2> problem ("step-36.prm");