1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-19 01:04:20 +00:00

Avoided a warning in OSX when core graphics is disabled

This commit is contained in:
jules 2016-02-17 16:24:39 +00:00
parent 1b8c8bdb5d
commit deae885df4

View file

@ -531,6 +531,8 @@ public:
usingCoreGraphics = index > 0;
[view setNeedsDisplay: true];
}
#else
ignoreUnused (index);
#endif
}