amend 256e22344f - no need for a non-const iterator

This commit is contained in:
Paul Davis 2021-08-06 10:15:58 -06:00
parent 9635aca923
commit 899ffa3b23
1 changed files with 1 additions and 1 deletions

View File

@ -574,7 +574,7 @@ RegionView::update_cue_markers ()
* timestamps and some of them may be outside the Region.
*/
for (CueMarkers::iterator c = model_markers.begin(); c != model_markers.end(); c++) {
for (CueMarkers::const_iterator c = model_markers.begin(); c != model_markers.end(); c++) {
ViewCueMarkers::iterator existing = _cue_markers.end();