From: bangerth Date: Mon, 29 Nov 2010 23:48:38 +0000 (+0000) Subject: The intel compiler wants us to initialize each const member. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f46cd794f6a8a0ed9a4b73664849f596f178a80c;p=dealii-svn.git The intel compiler wants us to initialize each const member. git-svn-id: https://svn.dealii.org/trunk@22886 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-12/step-12.cc b/deal.II/examples/step-12/step-12.cc index 210c6f8e64..f26b6f1ca9 100644 --- a/deal.II/examples/step-12/step-12.cc +++ b/deal.II/examples/step-12/step-12.cc @@ -243,6 +243,7 @@ class Step12 template Step12::Step12 () : + mapping (), fe (1), dof_handler (triangulation) {}