From 1a567fdde1a7eab7397edf7d7c22fac0f58c4205 Mon Sep 17 00:00:00 2001 From: wolf Date: Tue, 4 Feb 2003 21:17:06 +0000 Subject: [PATCH] Mini change that makes Borland C++ compile this file. git-svn-id: https://svn.dealii.org/trunk@7017 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/lac/include/lac/vector.h b/deal.II/lac/include/lac/vector.h index 8ef2dfd2b0..0b2f55df25 100644 --- a/deal.II/lac/include/lac/vector.h +++ b/deal.II/lac/include/lac/vector.h @@ -639,7 +639,7 @@ void Vector::reinit (const unsigned int n, const bool fast) if (n>maxdim) { if (val) delete[] val; - val = new Number[n]; + val = new value_type[n]; Assert (val != 0, ExcOutOfMemory()); maxdim = n; }; -- 2.39.5