Howdy
I'm trying to initialize and array in my header file, something like
int divs[5]{ 2, 3, 4, 6, 8 };
This compiles fine on mac, but not so much on windows.
I'd like to use the Juce array stuff, but I cannot figure out the exact syntax, or if I do some of this in the header and some in the constructor.
So far I've got Array<int> divs but I can't get much further than that.
Could anyone point me in the right direction?
Thanks