From: wolf Date: Tue, 4 Feb 2003 21:17:06 +0000 (+0000) Subject: Mini change that makes Borland C++ compile this file. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a567fdde1a7eab7397edf7d7c22fac0f58c4205;p=dealii-svn.git Mini change that makes Borland C++ compile this file. git-svn-id: https://svn.dealii.org/trunk@7017 0785d39b-7218-0410-832d-ea1e28bc413d --- 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; };