forked from OSchip/llvm-project
Rmoved a duplicate version of SetSelectedThreadByID
that confused external clients. <rdar://problem/12599528> llvm-svn: 167097
This commit is contained in:
parent
5bb2673fc8
commit
256cf2cb49
|
@ -121,9 +121,6 @@ public:
|
|||
bool
|
||||
SetSelectedThread (const lldb::SBThread &thread);
|
||||
|
||||
bool
|
||||
SetSelectedThreadByID (uint32_t tid); // DEPRECATED
|
||||
|
||||
bool
|
||||
SetSelectedThreadByID (lldb::tid_t tid);
|
||||
|
||||
|
|
|
@ -418,12 +418,6 @@ SBProcess::SetSelectedThread (const SBThread &thread)
|
|||
return false;
|
||||
}
|
||||
|
||||
bool
|
||||
SBProcess::SetSelectedThreadByID (uint32_t tid)
|
||||
{
|
||||
return SetSelectedThreadByID ((lldb::tid_t)tid);
|
||||
}
|
||||
|
||||
bool
|
||||
SBProcess::SetSelectedThreadByID (lldb::tid_t tid)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue