Resolve potential variable name ambiguity for older compilers
authorRobin Gareus <robin@gareus.org>
Fri, 21 Apr 2017 14:05:24 +0000 (16:05 +0200)
committerRobin Gareus <robin@gareus.org>
Fri, 21 Apr 2017 14:05:24 +0000 (16:05 +0200)
libs/surfaces/faderport8/faderport8.cc

index 9f642e81716ffb5ac72c9c6ebf5412c2b303b197..03b0237ce1a91f03fc6a85341a575b311f8b0c07 100644 (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;
                        }