From c4c94985a621a2ceb485762f2670463381183b0c Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Thu, 9 Jul 2009 12:49:21 +0200 Subject: [PATCH] RemoteVstPlugin: fixed typo in 4ad5add74582c587ae97f1e8529e5e1046ff8f70 Commit 4ad5add74582c587ae97f1e8529e5e1046ff8f70 introduced a typo which lead to compilation failure. This commit fixes it. Signed-off-by: Tobias Doerffel --- plugins/vst_base/remote_vst_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/vst_base/remote_vst_plugin.cpp b/plugins/vst_base/remote_vst_plugin.cpp index a3bdf93ec..915333c8d 100644 --- a/plugins/vst_base/remote_vst_plugin.cpp +++ b/plugins/vst_base/remote_vst_plugin.cpp @@ -268,7 +268,7 @@ private: float * * m_inputs; float * * m_outputs; - typedef std::vector VstMidiEventList; + typedef std::vector VstMidiEventList; VstMidiEventList m_midiEvents; bpm_t m_bpm;