Remove C++11-ism. v2.13.89
authorCarl Hetherington <cth@carlh.net>
Thu, 20 Dec 2018 11:53:56 +0000 (11:53 +0000)
committerCarl Hetherington <cth@carlh.net>
Thu, 20 Dec 2018 11:53:56 +0000 (11:53 +0000)
src/wx/swaroop_controls.cc

index 292898b164b291aff70b6f3d4c962ec9a2248c3f..4b32b2cbaedc9ae6ff1141f010aeeba3411e7ca1 100644 (file)
@@ -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);
        }