2013-09-26 17:14:40 +02:00

23 lines
658 B
Plaintext

$NetBSD: patch-ad,v 1.1 2008/07/27 21:44:47 dholland Exp $
--- FeLib/Include/fearray.h~ 2004-10-26 15:35:44.000000000 -0400
+++ FeLib/Include/fearray.h 2008-07-27 16:22:34.000000000 -0400
@@ -34,7 +34,7 @@
};
template <class type>
-inline fearray<type>::fearray<type>(const fearray<type>& A)
+inline fearray<type>::fearray(const fearray<type>& A)
: Data(A.Data), Size(A.Size)
{
if(Data)
@@ -42,7 +42,7 @@
}
template <class type>
-inline fearray<type>::fearray<type>(const type* Array, sizetype Size)
+inline fearray<type>::fearray(const type* Array, sizetype Size)
: Size(Size)
{
char* Ptr = new char[Size * sizeof(type) + sizeof(ulong)];