1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-16 08:34:10 +02:00

Fix missing include for allegro

Allegro, for some reason, does not include <cstring>, which causes compile errors when including the header.
This commit is contained in:
Pokechu22 2017-07-03 13:18:43 -07:00 committed by Paul Licameli
parent 9ab40113b7
commit 724091eb15

View File

@ -28,6 +28,7 @@
#ifdef EXPERIMENTAL_MIDI_OUT
#include "../lib-src/portmidi/pm_common/portmidi.h"
#include "../lib-src/portmidi/porttime/porttime.h"
#include <cstring> // Allegro include fails if this header isn't included do to no memcpy
#include "../lib-src/portsmf/allegro.h"
class NoteTrack;