Switch implicit references of folly::make_unique to std::make_unique
[folly.git] / folly / io / async / test / EventBaseTest.cpp
index ce1c6c770d3f279dd351fc477f72a3c90ff95cf3..8a7f86c099de599342c25ad4765a0c32094f15d6 100644 (file)
@@ -1189,7 +1189,7 @@ TEST(EventBaseTest, RunInEventBaseThreadAndWait) {
   vector<unique_ptr<atomic<size_t>>> atoms(c);
   for (size_t i = 0; i < c; ++i) {
     auto& atom = atoms.at(i);
-    atom = make_unique<atomic<size_t>>(0);
+    atom = std::make_unique<atomic<size_t>>(0);
   }
   vector<thread> threads;
   for (size_t i = 0; i < c; ++i) {