From: Devananda Date: July 1 2004 1:17am Subject: ArrayPool.hpp: error: `size' undeclared - fixed ! List-Archive: http://lists.mysql.com/cluster/63 Message-Id: <40E36646.9080902@neopets.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi, Finally got mysql4.1.3-beta to compile with gcc 3.4.0 on mandrake 9.2 ... the error I was getting is /../../../../ndb/src/kernel/vm/ArrayPool.hpp: In member function `void UnsafeArrayPool::getPtrForce(Ptr&)': ../../../../ndb/src/kernel/vm/ArrayPool.hpp:798: error: `size' undeclared (first use this function)/ .... (about 5 sets of this error, 1 for each member function) well, 'size' is a protected member of UnsafeArrayPool's parent class. adding 'this->' in front of 'size' solved the problem. (thanks Chris!) had to do this in several files: DLFifoList.hpp SLList.hpp DLList.hpp DataBuffer.hpp ArrayPool.hpp and then it compiled! Hope no one else runs into this little mess... -Devananda