Merge "init: fix todo in a test"
This commit is contained in:
commit
5d93b127f5
1 changed files with 1 additions and 5 deletions
|
|
@ -53,11 +53,7 @@ void WriteFromMultipleThreads(std::vector<std::pair<std::string, T>>& files_and_
|
|||
};
|
||||
|
||||
std::vector<std::thread> threads;
|
||||
// TODO(b/63712782): Structured bindings + templated containers are broken in clang :(
|
||||
// for (const auto& [file, parameter] : files_and_parameters) {
|
||||
for (const auto& pair : files_and_parameters) {
|
||||
const auto& file = pair.first;
|
||||
const auto& parameter = pair.second;
|
||||
for (const auto& [file, parameter] : files_and_parameters) {
|
||||
threads.emplace_back(std::thread(make_thread_function(file, parameter)));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue