1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +00:00

Projucer: fixed unreachable code warning in ProjectContentComponent::createBuildTab.

This commit is contained in:
Timur Doumler 2016-04-07 09:24:30 +01:00
parent c77fea91f6
commit 9066ed4d59

View file

@ -447,13 +447,13 @@ struct EnableBuildComp : public Component
Component* ProjectContentComponent::createBuildTab (CompileEngineChildProcess* child)
{
#if JUCE_WINDOWS
ignoreUnused(child);
return new ProjucerDisabledComp ("Windows support is still under development - "
"please check for updates at www.juce.com!", false);
ignoreUnused (child);
#elif JUCE_LINUX
ignoreUnused(child);
return new ProjucerDisabledComp ("Linux support is still under development - "
"please check for updates at www.juce.com!", false);
ignoreUnused (child);
#else
if (child != nullptr)
{