diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-12-20 11:53:56 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-12-20 11:53:56 +0000 |
| commit | 41554c32497bf45f74c14506a9e5b3c139ed919c (patch) | |
| tree | 7bdb202fe1fdcd68c3facda2f3f1cf873a83a299 | |
| parent | 05d90a3edda9c1f5e7499f0ce7b6617fe46ac54d (diff) | |
Remove C++11-ism.v2.13.89
| -rw-r--r-- | src/wx/swaroop_controls.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/swaroop_controls.cc b/src/wx/swaroop_controls.cc index 292898b16..4b32b2cba 100644 --- a/src/wx/swaroop_controls.cc +++ b/src/wx/swaroop_controls.cc @@ -305,7 +305,7 @@ SwaroopControls::update_playlist_directory () } sort (_playlists.begin(), _playlists.end(), SPLComparator()); - for (SPL i: _playlists) { + BOOST_FOREACH (SPL i, _playlists) { add_playlist_to_list (i); } |
