From: Daniel Arndt Date: Fri, 16 Mar 2018 11:00:21 +0000 (+0100) Subject: Fix 64-bit dof type in test X-Git-Tag: v9.0.0-rc1~323^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6047%2Fhead;p=dealii.git Fix 64-bit dof type in test --- diff --git a/tests/non_matching/coupling_05.cc b/tests/non_matching/coupling_05.cc index 4b43d03781..5310ccd0c8 100644 --- a/tests/non_matching/coupling_05.cc +++ b/tests/non_matching/coupling_05.cc @@ -112,7 +112,7 @@ void test() { QGauss quad(4); FEValues fev(fe, quad, update_values|update_JxW_values); - std::vector dofs(fe.dofs_per_cell); + std::vector dofs(fe.dofs_per_cell); FullMatrix cell_matrix(fe.dofs_per_cell, fe.dofs_per_cell); ConstraintMatrix constraints;