From b8ae89add0f3ab4b1187162725c4d41c67f17aeb Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 14 Nov 2013 21:38:59 +0000 Subject: [PATCH] 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 --- tests/hp/create_rhs_01.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5