From 82a15342267d57938967b9b3912afb8f3c26759c Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Wed, 12 May 2021 12:20:31 -0400 Subject: [PATCH] Remove redundant test of USE_MIDI ... ... See instead how cmake_proxies/CMakeLists.txt already enforces that if EXPERIMENTAL_MIDI_OUT is true, then USE_MIDI must be true --- src/AudioIO.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/AudioIO.h b/src/AudioIO.h index e95f4c984..6bc4a7185 100644 --- a/src/AudioIO.h +++ b/src/AudioIO.h @@ -23,10 +23,6 @@ #include #include // member variable -#ifdef USE_MIDI - -// TODO: Put the relative paths into automake. - #ifdef EXPERIMENTAL_MIDI_OUT typedef void PmStream; typedef int32_t PmTimestamp; @@ -41,8 +37,6 @@ using NoteTrackConstArray = std::vector < std::shared_ptr< const NoteTrack > >; #endif // EXPERIMENTAL_MIDI_OUT -#endif // USE_MIDI - #include // to declare custom event types #include "SampleFormat.h"