Codemod folly::make_unique to std::make_unique
[folly.git] / folly / fibers / FiberManager.cpp
index 8a04bde1132245840bfb95f27d0e2974b538aff3..054ed1713a6433961522504f7a4ab74211a0c9e1 100644 (file)
@@ -335,7 +335,7 @@ class ScopedAlternateSignalStack {
       return;
     }
 
-    stack_ = folly::make_unique<AltStackBuffer>();
+    stack_ = std::make_unique<AltStackBuffer>();
 
     setAlternateStack(stack_->data(), stack_->size());
   }