Undo usage of LLVM macros in debugserver
We don't take a dependency on LLVM in debugserver. This was failing to compile before. llvm-svn: 278190
This commit is contained in:
parent
1c57cc2b68
commit
abd6186216
|
|
@ -183,14 +183,14 @@ RNBRemote::RNBRemote () :
|
||||||
m_enable_compression_next_send_packet (false),
|
m_enable_compression_next_send_packet (false),
|
||||||
m_compression_mode (compression_types::none)
|
m_compression_mode (compression_types::none)
|
||||||
{
|
{
|
||||||
DNBLogThreadedIf (LOG_RNB_REMOTE, "%s", LLVM_PRETTY_FUNCTION);
|
DNBLogThreadedIf (LOG_RNB_REMOTE, "%s", __PRETTY_FUNCTION__);
|
||||||
CreatePacketTable ();
|
CreatePacketTable ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
RNBRemote::~RNBRemote()
|
RNBRemote::~RNBRemote()
|
||||||
{
|
{
|
||||||
DNBLogThreadedIf (LOG_RNB_REMOTE, "%s", LLVM_PRETTY_FUNCTION);
|
DNBLogThreadedIf (LOG_RNB_REMOTE, "%s", __PRETTY_FUNCTION__);
|
||||||
StopReadRemoteDataThread();
|
StopReadRemoteDataThread();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue