On macos, following the suggested XCode-based compilation, I get this error:
/.../plugin-GUI/Source/Processors/FileReader/ScrubberInterface.cpp:224:25 Chained comparison 'X < Y < Z' does not behave the same as a mathematical expression
This refers to this line of code:
float timelinePos = (float) (fileReader->getPlayheadPosition() - startSampleNumber) / (stopSampleNumber - startSampleNumber) * getWidth();
if (0 < timelinePos < sliderPosition + sliderWidth)
{
g.setOpacity (1.0f);
g.fillRoundedRectangle (timelinePos, 0, 1, this->getHeight(), 0.2);
}
I assume it's supposed to be:
if ((0 < timelinePos) && (timelinePos < sliderPosition + sliderWidth))
On macos, following the suggested XCode-based compilation, I get this error:
This refers to this line of code:
I assume it's supposed to be: