mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-05 21:25:46 +01:00
Fix gcc-4.2 OSX/PPC builds
ambiguity between reverse_iterator rend(); const_reverse_iterator rend() const;
This commit is contained in:
parent
52a2f5bada
commit
6f11cd30bf
1 changed files with 2 additions and 1 deletions
|
|
@ -1570,7 +1570,8 @@ PluginManager::load_tags ()
|
|||
vector<std::string> tmp;
|
||||
find_files_matching_pattern (tmp, plugin_metadata_search_path (), "plugin_tags");
|
||||
|
||||
for (vector<std::string>::const_reverse_iterator p = tmp.rbegin (); p != tmp.rend(); ++p) {
|
||||
for (vector<std::string>::const_reverse_iterator p = tmp.rbegin ();
|
||||
p != (vector<std::string>::const_reverse_iterator)tmp.rend(); ++p) {
|
||||
std::string path = *p;
|
||||
info << string_compose (_("Loading plugin meta data file %1"), path) << endmsg;
|
||||
if (!Glib::file_test (path, Glib::FILE_TEST_EXISTS)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue