Codemod folly::make_unique to std::make_unique
[folly.git] / folly / fibers / TimeoutController.cpp
index ce68e9e16cc86a5037b672b5c926e4be84f0788b..f1bf711b9aa874fcf38024e74b07ed527c88228d 100644 (file)
@@ -33,7 +33,7 @@ intptr_t TimeoutController::registerTimeout(
     }
 
     timeoutHandleBuckets_.emplace_back(
-        duration, folly::make_unique<TimeoutHandleList>());
+        duration, std::make_unique<TimeoutHandleList>());
     return *timeoutHandleBuckets_.back().second;
   }();