diff options
Diffstat (limited to 'src/PatchageModule.cpp')
-rw-r--r-- | src/PatchageModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PatchageModule.cpp b/src/PatchageModule.cpp index a4d2fe9..3662172 100644 --- a/src/PatchageModule.cpp +++ b/src/PatchageModule.cpp @@ -60,7 +60,7 @@ PatchageModule::update_menu() if (_type == SignalDirection::duplex) { bool has_in = false; bool has_out = false; - for (const_iterator p = begin(); p != end(); ++p) { + for (auto p = begin(); p != end(); ++p) { if ((*p)->is_input()) { has_in = true; } else { |