[clang-format] Fix format of my last patch

This commit is contained in:
Vitaly Buka 2023-02-22 10:11:41 -08:00
parent ae46cd72aa
commit 1ddc41c3d1

View File

@ -57,7 +57,7 @@ public:
std::lock_guard<std::mutex> Lock(Mutex);
// Use operator[] before creating the thread to avoid data race in .size()
// in “safe libc++” mode.
auto& Thread0 = Threads[0];
auto &Thread0 = Threads[0];
Thread0 = std::thread([this, ThreadCount, S] {
for (unsigned I = 1; I < ThreadCount; ++I) {
Threads.emplace_back([=] { work(S, I); });