From 62b27d606b9872d8cc44fb693addac77bf49d54f Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 20 Aug 2015 19:06:50 -0500 Subject: [PATCH] Fix a test. This did not compile in 64-bit mode. --- tests/fe/restrict_prolongation_01.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/fe/restrict_prolongation_01.cc b/tests/fe/restrict_prolongation_01.cc index ee1794b3e4..21060e9107 100644 --- a/tests/fe/restrict_prolongation_01.cc +++ b/tests/fe/restrict_prolongation_01.cc @@ -1,7 +1,7 @@ /* --------------------------------------------------------------------- * $Id$ * - * Copyright (C) 1999 - 2013 by the deal.II authors + * Copyright (C) 1999 - 2013, 2015 by the deal.II authors * * This file is part of the deal.II library. * @@ -74,7 +74,7 @@ check(const FiniteElement &fe, FullMatrix restriction_global(dpc,n_dofs); FullMatrix prolongation_global(n_dofs,dpc); - std::vector ldi (dpc); + std::vector ldi (dpc); //now create the matrix coarse to fine (prolongation) //and fine to coarse (restriction) with respect to all dofs -- 2.39.5