Codemod folly::make_unique to std::make_unique
[folly.git] / folly / io / async / test / ScopedBoundPort.cpp
index 9db7e54e183382cba6b2b9328d4cb5f30c08f52d..e7aefb488fc7a506493f03607d5aa6f29623f9c7 100644 (file)
@@ -23,7 +23,7 @@
 namespace folly {
 
 ScopedBoundPort::ScopedBoundPort(IPAddress host) {
-  ebth_ = folly::make_unique<ScopedEventBaseThread>();
+  ebth_ = std::make_unique<ScopedEventBaseThread>();
   ebth_->getEventBase()->runInEventBaseThreadAndWait([&] {
     sock_ = AsyncServerSocket::newSocket(ebth_->getEventBase());
     sock_->bind(SocketAddress(host, 0));