Add InlineExecutor.cpp to Makefile.am
[folly.git] / folly / test / RWSpinLockTest.cpp
index fb61572feecff47d0a023d0569d67e5d8a30233d..385f2d2b8212665016ebc4c8e3b22f97d0a61c9a 100644 (file)
@@ -228,7 +228,9 @@ TEST(RWSpinLock, concurrent_holder_test) {
   sleep(5);
   stop.store(true, std::memory_order_release);
 
-  for (auto& t : threads) t.join();
+  for (auto& t : threads) {
+    t.join();
+  }
 
   LOG(INFO) << "reads: " << reads.load(std::memory_order_acquire)
     << "; writes: " << writes.load(std::memory_order_acquire)