MemoryOutputStream bug in tip

Hi Jules,

using the tip of today and building JuceDemo I get a compiler error about MemoryOutputStream not implementing all abstract base methods of OutputStream

further investigation reveals this difference in the write() method:

[code]MemoryOutputStream:
bool write (const void* buffer, int howMany);

OutputStream:
virtual bool write (const void* dataToWrite,
size_t numberOfBytes) = 0;[/code]

thought you’d want to know

never mind, false alert!

some files from the tip didn’t make it to my build environment - my bad :oops:

sorry