[PD] problems compiling GRiPD

Mathieu Bouchard matju at artengine.ca
Tue Dec 6 18:06:21 CET 2005


On Tue, 6 Dec 2005, federico wrote:

> sorry, this solves a part of the problem.
> lots of errors still remains:

To get rid of "cerr" and "endl" errors, insert this line at top of 
Array.cpp :

	using namespace std;

To get rid of the rest of the errors, insert these lines inside of the 
Array<type> block of Array.h :

	using Collection<type>::getSize;
	using Collection<type>::array;
	using Collection<type>::size;
	using Collection<type>::allocSize;
	using Collection<type>::allowGrowthQ;
	using Collection<type>::growthAmount;
	using Collection<type>::maxSize;

Which is because the new C++ standard is brain-damaged, and GCC4 follows 
it closely.

____________________________________________________________________
Mathieu Bouchard - tél:+1.514.383.3801 - http://artengine.ca/matju
Freelance Digital Arts Engineer, Montréal QC Canada




More information about the Pd-list mailing list