Resolve potential variable name ambiguity for older compilers

This commit is contained in:
Robin Gareus 2017-04-21 16:05:24 +02:00
parent d7d86a99d2
commit ea1769d711

View File

@ -1181,8 +1181,8 @@ FaderPort8::spill_plugins ()
}
int n_controls = 0;
set<Evoral::Parameter> p = proc->what_can_be_automated ();
for (set<Evoral::Parameter>::iterator i = p.begin(); i != p.end(); ++i) {
std::string n = proc->describe_parameter (*i);
for (set<Evoral::Parameter>::iterator j = p.begin(); j != p.end(); ++j) {
std::string n = proc->describe_parameter (*j);
if (n == "hidden") {
continue;
}