Since lldb version doesn’t have to be a valid floating point literal, like x.y.z,

the uses of DEBUGSERVER_VERSION_NUM are invalid and have to be removed.

Change by Kuba Ober.

llvm-svn: 203828
This commit is contained in:
Todd Fiala
2014-03-13 18:30:04 +00:00
parent 639f8ea397
commit c3ec337e4d
3 changed files with 5 additions and 6 deletions

View File

@@ -3805,7 +3805,7 @@ RNBRemote::HandlePacket_qGDBServerVersion (const char *p)
strm << "name:" DEBUGSERVER_PROGRAM_NAME ";";
else
strm << "name:debugserver;";
strm << "version:" << DEBUGSERVER_VERSION_NUM << ";";
strm << "version:" << DEBUGSERVER_VERSION_STR << ";";
return SendPacket (strm.str());
}