From a463a1e0ea359e9dbf5344991ba2a2d9921b33c9 Mon Sep 17 00:00:00 2001 From: John Emmas Date: Wed, 12 Feb 2020 09:56:29 +0000 Subject: [PATCH] Revert commit #39975dc3c6 from Feb 7th 'using namespace ARDOUR;' is needed for the MSVC build. (I guess it could be enclosed by a #ifdef if it's causing issues for the gcc build) --- libs/ardour/convolver.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/ardour/convolver.cc b/libs/ardour/convolver.cc index c131661f2f..093921a055 100644 --- a/libs/ardour/convolver.cc +++ b/libs/ardour/convolver.cc @@ -35,10 +35,11 @@ #include "pbd/i18n.h" +using namespace ARDOUR; using namespace ARDOUR::DSP; using namespace ArdourZita; -Convolution::Convolution (ARDOUR::Session& session, uint32_t n_in, uint32_t n_out) +Convolution::Convolution (Session& session, uint32_t n_in, uint32_t n_out) : SessionHandleRef (session) , _n_samples (0) , _max_size (0) @@ -217,7 +218,7 @@ Convolution::run (BufferSet& bufs, ChanMapping const& in_map, ChanMapping const& /* ****************************************************************************/ Convolver::Convolver ( - ARDOUR::Session& session, + Session& session, std::string const& path, IRChannelConfig irc, IRSettings irs)