From f9d2d9fb050ce2f93cfc4864cb2e774f68986b4e Mon Sep 17 00:00:00 2001 From: Changho Hwang Date: Mon, 11 Sep 2023 13:00:42 +0000 Subject: [PATCH] Lint --- src/semaphore.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/semaphore.cc b/src/semaphore.cc index 013c11205..63df88f40 100644 --- a/src/semaphore.cc +++ b/src/semaphore.cc @@ -44,7 +44,8 @@ MSCCLPP_API_CPP Host2DeviceSemaphore::DeviceHandle Host2DeviceSemaphore::deviceH MSCCLPP_API_CPP Host2HostSemaphore::Host2HostSemaphore(Communicator& communicator, std::shared_ptr connection) : BaseSemaphore(std::make_unique(), std::make_unique(), std::make_unique()), - connection_(connection), polling(false) { + connection_(connection), + polling(false) { if (connection->transport() == Transport::CudaIpc) { throw Error("Host2HostSemaphore cannot be used with CudaIpc transport", ErrorCode::InvalidUsage); }