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:
parent
c77fea91f6
commit
9066ed4d59
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue