mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-23 01:44:22 +00:00
Added a cast to some VST code to avoid a C++14 warning
This commit is contained in:
parent
1a1897b43b
commit
3d1b2d66a3
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ public:
|
|||
if (se->type == kVstSysExType)
|
||||
delete[] se->sysexDump;
|
||||
|
||||
se->sysexDump = new char [numBytes];
|
||||
se->sysexDump = new char [(size_t) numBytes];
|
||||
memcpy (se->sysexDump, midiData, (size_t) numBytes);
|
||||
|
||||
se->type = kVstSysExType;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue