summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-03-25 20:40:26 +0100
committerRobin Gareus <robin@gareus.org>2016-03-25 20:40:26 +0100
commit6d735dafe2ff8596b5ca096e06e9badd4c57fdf7 (patch)
treec6c9d8a3dc1d0d1d5eb40fb2a449468e40c708ca
parent5fb5a20e0884474e3a16e6cb79fda916823230d1 (diff)
amend last commit
-rw-r--r--libs/ardour/ardour/plugin_insert.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/ardour/plugin_insert.h b/libs/ardour/ardour/plugin_insert.h
index 7a3dd981dd..453b9a0f0c 100644
--- a/libs/ardour/ardour/plugin_insert.h
+++ b/libs/ardour/ardour/plugin_insert.h
@@ -216,8 +216,8 @@ class LIBARDOUR_API PluginInsert : public Processor
/** details of the match currently being used */
Match _match;
- std::map <int, ARDOUR::ChanMapping> _in_map;
- std::map <int, ARDOUR::ChanMapping> _out_map;
+ std::map <uint32_t, ARDOUR::ChanMapping> _in_map;
+ std::map <uint32_t, ARDOUR::ChanMapping> _out_map;
void automation_run (BufferSet& bufs, framepos_t start, pframes_t nframes);
void connect_and_run (BufferSet& bufs, pframes_t nframes, framecnt_t offset, bool with_auto, framepos_t now = 0);