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=54b7c18c9099e7d672b8b343a6fb02bf192d3ea1;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;