From: Wolfgang Bangerth Date: Tue, 30 Nov 2010 04:45:36 +0000 (+0000) Subject: Initialize member variable to avoid warning by ICC. X-Git-Tag: v8.0.0~4772 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fee55169e51c867a7e6480324b1cf6ef5c3e783f;p=dealii.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),