Hi!
trying to compile freeverb~ with msvc (VCToollKit) i got errors because of the use of "inline"
adding this to the beginning of the file solved the problem:
#ifndef INLINE #if defined(_MSC_VER) #define inline __inline #elif defined(__GNUC__) #define inline __inline__ #elif defined(__MWERKS__) #define inline inline #endif /* defined(<Compiler>) */ #endif /* INLINE */
should I commit it?
it is also missing a simple makefile, i've just wrote one, should i commit it too?
ciao, davide.