mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
VST3: Prevent a compiler warning
This commit is contained in:
parent
37bb7a6c30
commit
af256aab02
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue