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

AudioUnitPluginFormat: Remove unused preprocessor defs

This commit is contained in:
reuk 2025-08-20 14:04:58 +01:00
parent 04fd5dfb61
commit 0d80e22276
No known key found for this signature in database

View file

@ -57,17 +57,6 @@
namespace juce
{
// Change this to disable logging of various activities
#ifndef AU_LOGGING
#define AU_LOGGING 1
#endif
#if AU_LOGGING
#define JUCE_AU_LOG(a) Logger::writeToLog(a);
#else
#define JUCE_AU_LOG(a)
#endif
namespace AudioUnitFormatHelpers
{
#if JUCE_DEBUG
@ -262,7 +251,6 @@ namespace AudioUnitFormatHelpers
// Audio Unit plugins expect hosts to listen to their view bounds, and to resize
// the plugin window/view appropriately.
#if JUCE_MAC || JUCE_IOS
#if JUCE_IOS
#define JUCE_IOS_MAC_VIEW UIView
using ViewComponentBaseClass = UIViewComponent;
@ -277,7 +265,6 @@ namespace AudioUnitFormatHelpers
void childBoundsChanged (Component*) override { triggerAsyncUpdate(); }
void handleAsyncUpdate() override { resizeToFitView(); }
};
#endif
template <typename PropertyType>
static std::optional<PropertyType> tryGetProperty (AudioUnit inUnit,
@ -2984,8 +2971,6 @@ FileSearchPath AudioUnitPluginFormat::getDefaultLocationsToSearch()
return {};
}
#undef JUCE_AU_LOG
} // namespace juce
#endif