So I’m working on an AAX DSP project which has a minimum set of JUCE modules… and I wanted to add the DSP module manually.
I found that I had to undef check in juce_dsp.h to avoid a collision with the C libs…
//==============================================================================
#undef Complex // apparently some C libraries actually define these symbols (!)
#undef Factor
#undef check
Cheers,
Rail
