Codemod folly::make_unique to std::make_unique
[folly.git] / folly / test / ThreadLocalTest.cpp
index c33549d0cb253856517076ae59726d1f8facaf12..392a52fc93cb3a036c57e156db52db2f8df8a40f 100644 (file)
@@ -103,7 +103,7 @@ TEST(ThreadLocalPtr, DefaultDeleterOwnershipTransfer) {
   Widget::totalVal_ = 0;
   {
     ThreadLocalPtr<Widget> w;
-    auto source = folly::make_unique<Widget>();
+    auto source = std::make_unique<Widget>();
     std::thread([&w, &source]() {
       w.reset(std::move(source));
       w.get()->val_ += 10;