1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Fixed an IAA namespacing issue

This commit is contained in:
tpoole 2017-10-27 10:18:51 +01:00
parent 67fd58c796
commit cc5b2238ae

View file

@ -134,8 +134,12 @@ protected:
ScopedPointer<StandaloneFilterWindow> mainWindow;
};
} // namespace juce
#if JucePlugin_Build_Standalone && JUCE_IOS
using namespace juce;
bool JUCE_CALLTYPE juce_isInterAppAudioConnected()
{
if (auto holder = StandalonePluginHolder::getInstance())
@ -161,6 +165,4 @@ Image JUCE_CALLTYPE juce_getIAAHostIcon (int size)
#endif
#endif
} // namespace juce
#endif