mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 16:46:35 +01:00
Remove unnecesary clearing of local variable in EngineControl
This commit is contained in:
parent
ab7cf8c7a7
commit
4651b10345
1 changed files with 1 additions and 1 deletions
|
|
@ -1190,7 +1190,7 @@ EngineControl::set_buffersize_popdown_strings (const std::string& device_name)
|
||||||
bs.push_back (4096);
|
bs.push_back (4096);
|
||||||
bs.push_back (8192);
|
bs.push_back (8192);
|
||||||
}
|
}
|
||||||
s.clear ();
|
|
||||||
for (vector<uint32_t>::const_iterator x = bs.begin(); x != bs.end(); ++x) {
|
for (vector<uint32_t>::const_iterator x = bs.begin(); x != bs.end(); ++x) {
|
||||||
s.push_back (bufsize_as_string (*x));
|
s.push_back (bufsize_as_string (*x));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue