Fix MSVC build after rL255016

llvm-svn: 255017
This commit is contained in:
Tamas Berghammer 2015-12-08 14:27:40 +00:00
parent ccd6cffba3
commit 372810f5f5
1 changed files with 4 additions and 2 deletions

View File

@ -55,9 +55,11 @@ GDBRemoteCommunicationServerPlatform::GDBRemoteCommunicationServerPlatform(const
m_spawned_pids_mutex (Mutex::eMutexTypeRecursive),
m_platform_sp (Platform::GetHostPlatform ()),
m_port_map (),
m_port_offset(0),
m_pending_gdb_server{ LLDB_INVALID_PROCESS_ID, 0, "" }
m_port_offset(0)
{
m_pending_gdb_server.pid = LLDB_INVALID_PROCESS_ID;
m_pending_gdb_server.port = 0;
RegisterMemberFunctionHandler(StringExtractorGDBRemote::eServerPacketType_qC,
&GDBRemoteCommunicationServerPlatform::Handle_qC);
RegisterMemberFunctionHandler(StringExtractorGDBRemote::eServerPacketType_qGetWorkingDir,