Xcode warnings with -Wmissing-prototypes

Sorry, it’s me again with my annoying warnings report :innocent: Here are the warnings due to -Wmissing-prototypes (or GCC_WARN_ABOUT_MISSING_PROTOTYPES). Tested on develop branch (f77b286) with Xcode 13.3 & macOS 12.3 and Xcode 13.2 & macOS 12.2:

JUCE/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp:147:23: warning: no previous prototype for function 'getNormalisedTUID' [-Wmissing-prototypes]
std::array<uint32, 4> getNormalisedTUID (const TUID& tuid) noexcept
                      ^
JUCE/modules/juce_audio_devices/audio_io/juce_SampleRateHelpers.cpp:28:13: warning: no previous prototype for function 'getAllSampleRates' [-Wmissing-prototypes]
const auto& getAllSampleRates()
            ^
1 Like

We’ve fixed the missing prototype warnings on the juce7 branch:

2 Likes