From: bangerth Date: Thu, 14 Nov 2013 21:38:59 +0000 (+0000) Subject: Initialize a variable to avoid a testsuite failure with ICC 14. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47e8c111f7bf15973300d343fd05f2de670d1ec1;p=dealii-svn.git Initialize a variable to avoid a testsuite failure with ICC 14. git-svn-id: https://svn.dealii.org/trunk@31662 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/hp/create_rhs_01.cc b/tests/hp/create_rhs_01.cc index 8eb80bd13f..6d020239e5 100644 --- a/tests/hp/create_rhs_01.cc +++ b/tests/hp/create_rhs_01.cc @@ -76,7 +76,7 @@ void test () Vector rhs_vector(hp_dof_handler.n_dofs()); Vector rhs_vector2(hp_dof_handler2.n_dofs()); - types::boundary_id myints[1]; + types::boundary_id myints[1] = {0}; std::set boundary_indicators (myints,myints+1); myints[0]=0; hp::QCollection<1> quadrature;