Skip to content

Commit 400d78c

Browse files
committed
Adjusting m_client_count to be size_t.
1 parent 28347a3 commit 400d78c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/Protocol/MCP/ProtocolServerMCP.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class ProtocolServerMCP : public ProtocolServer {
6060
lldb_private::MainLoop m_loop;
6161
std::thread m_loop_thread;
6262
std::mutex m_mutex;
63-
uint32_t m_client_count = 0;
63+
size_t m_client_count = 0;
6464

6565
std::unique_ptr<Socket> m_listener;
6666

0 commit comments

Comments
 (0)