--- FeLib/Include/fearray.h.old 2006-05-21 16:02:19.000000000 +0200 +++ FeLib/Include/fearray.h 2006-05-21 16:03:16.000000000 +0200 @@ -34,7 +34,7 @@ }; template -inline fearray::fearray(const fearray& A) +inline fearray::fearray(const fearray& A) : Data(A.Data), Size(A.Size) { if(Data) @@ -42,7 +42,7 @@ } template -inline fearray::fearray(const type* Array, sizetype Size) +inline fearray::fearray(const type* Array, sizetype Size) : Size(Size) { char* Ptr = new char[Size * sizeof(type) + sizeof(ulong)]; --- Main/Source/script.cpp.old 2006-05-21 16:14:43.000000000 +0200 +++ Main/Source/script.cpp 2006-05-21 16:16:12.000000000 +0200 @@ -471,7 +471,7 @@ INIT_ENTRY(Flags); } -contentscript::contentscript() +contentscript::contentscript() : INIT(Team, DEFAULT_TEAM), INIT(Flags, 0) { } @@ -498,7 +498,7 @@ return Instance; } -contentscript::contentscript() +contentscript::contentscript() : INIT(Category, ANY_CATEGORY), INIT(MinPrice, 0), INIT(MaxPrice, MAX_PRICE), @@ -592,7 +592,7 @@ INIT_ENTRY(IsInside); } -contentscript::contentscript() +contentscript::contentscript() : INIT(VisualEffects, 0), INIT(AttachedArea, DEFAULT_ATTACHED_AREA), INIT(AttachedEntry, DEFAULT_ATTACHED_ENTRY) @@ -679,7 +679,7 @@ } } -template contentmap::contentmap() : ContentMap(0) { } +template contentmap::contentmap() : ContentMap(0) { } template contentmap::~contentmap() {