mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
C++98 compatibility
This commit is contained in:
parent
ca022f6bb7
commit
18daf2c9b2
1 changed files with 1 additions and 1 deletions
|
|
@ -142,7 +142,7 @@ ServerResources::read_manifests (std::string dir)
|
|||
find_paths_matching_filter (subdirs, spath, dir_filter,
|
||||
0 /*arg*/, true /*pass_fullpath*/, true /*return_fullpath*/, false /*recurse*/);
|
||||
|
||||
for (std::vector<std::string>::const_iterator it = subdirs.cbegin (); it != subdirs.cend (); ++it) {
|
||||
for (std::vector<std::string>::const_iterator it = subdirs.begin (); it != subdirs.end (); ++it) {
|
||||
std::string xml_path = Glib::build_filename (*it, manifest_filename);
|
||||
|
||||
if (!Glib::file_test (xml_path, Glib::FILE_TEST_EXISTS)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue