Consistently have the namespace closing comment
[folly.git] / folly / io / async / test / ScopedBoundPort.cpp
index 9db7e54e183382cba6b2b9328d4cb5f30c08f52d..a331449f999b3ca55185689859653b7d64e62922 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));
@@ -37,4 +37,4 @@ ScopedBoundPort::~ScopedBoundPort() {
 SocketAddress ScopedBoundPort::getAddress() const {
   return sock_->getAddress();
 }
-}
+} // namespace folly