From af256aab027b7aeefeb91fe6f864f83c5657e3eb Mon Sep 17 00:00:00 2001 From: Anthony Nicholls Date: Tue, 10 Jun 2025 21:30:15 +0100 Subject: [PATCH] VST3: Prevent a compiler warning --- modules/juce_audio_plugin_client/VST3/juce_VST3ModuleInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_audio_plugin_client/VST3/juce_VST3ModuleInfo.h b/modules/juce_audio_plugin_client/VST3/juce_VST3ModuleInfo.h index 606b2930f5..ce11ecbef9 100644 --- a/modules/juce_audio_plugin_client/VST3/juce_VST3ModuleInfo.h +++ b/modules/juce_audio_plugin_client/VST3/juce_VST3ModuleInfo.h @@ -99,7 +99,7 @@ public: << "\"New\": \"" << VST3::UID { newId }.toString() << "\", " << "\"Old\": ["; - for (int i = 0; i < oldIds.size(); ++i) + for (size_t i = 0; i < oldIds.size(); ++i) { str << "\"" << std::hex