You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following line (MidiTrack.cpp, line 236) assumes char is signed: keySig = static_cast<char>(readByte()); // force sign conversion ...
This fails on platforms where it isn't.
A potential fix is: keySig = static_cast<signed char>(readByte());
The text was updated successfully, but these errors were encountered:
The following line (MidiTrack.cpp, line 236) assumes
char
is signed:keySig = static_cast<char>(readByte()); // force sign conversion ...
This fails on platforms where it isn't.
A potential fix is:
keySig = static_cast<signed char>(readByte());
The text was updated successfully, but these errors were encountered: