1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed an unused variable warning in DemoUtilities.h when building in release mode

This commit is contained in:
ed 2018-05-08 12:51:31 +01:00
parent 7909af4ecb
commit 9343e9b279

View file

@ -54,6 +54,7 @@ inline File getExamplesDirectory() noexcept
MemoryOutputStream mo;
auto success = Base64::convertFromBase64 (mo, JUCE_STRINGIFY (PIP_JUCE_EXAMPLES_DIRECTORY));
ignoreUnused (success);
jassert (success);
return mo.toString();