From: bangerth Date: Tue, 30 Nov 2010 04:45:36 +0000 (+0000) Subject: Initialize member variable to avoid warning by ICC. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e1b4c9d758d2ae39829040bc69e68ed5fc56551;p=dealii-svn.git Initialize member variable to avoid warning by ICC. git-svn-id: https://svn.dealii.org/trunk@22887 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-39/step-39.cc b/deal.II/examples/step-39/step-39.cc index 5cb4bf7758..fad4b62eb8 100644 --- a/deal.II/examples/step-39/step-39.cc +++ b/deal.II/examples/step-39/step-39.cc @@ -411,6 +411,7 @@ class Step39 template Step39::Step39(const FiniteElement& fe) : + mapping(), fe(fe), mg_dof_handler(triangulation), dof_handler(mg_dof_handler),