From a2b92134cef8e9ec4568268edbd21ec934f8ee14 Mon Sep 17 00:00:00 2001 From: bumpsoo Date: Mon, 9 Feb 2026 14:14:23 +0000 Subject: [PATCH] =?UTF-8?q?doc:=20=EC=9E=98=EB=AA=BB=EB=90=9C=20=EC=A3=BC?= =?UTF-8?q?=EC=84=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/SessionManager.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/SessionManager.cpp b/server/SessionManager.cpp index 35c19ba..6120e67 100644 --- a/server/SessionManager.cpp +++ b/server/SessionManager.cpp @@ -43,8 +43,6 @@ void SessionManager::Broadcast(PacketHeader header, std::memcpy(buffer.data() + sizeof(PacketHeader), body.data(), body.size()); for (auto &session : sessions_) { - // session::send에 span을 전달해야 함. 벡터 자체를 전달할 수도 있지만 우리 - // Send는 span을 인자로 받음. Session::Send는 span을 받아 복사본을 생성함. session->Send(buffer); } }