Codemod folly::make_unique to std::make_unique
[folly.git] / folly / fibers / test / FibersTestApp.cpp
index f448eeee60e9f077de4770678c3c05c944cdb89f..1c4ca5516ea481867fe0c55af69898757dc4acb5 100644 (file)
@@ -26,7 +26,7 @@ using namespace folly::fibers;
 struct Application {
  public:
   Application()
-      : fiberManager(folly::make_unique<SimpleLoopController>()),
+      : fiberManager(std::make_unique<SimpleLoopController>()),
         toSend(20),
         maxOutstanding(5) {}