Rmoved a duplicate version of SetSelectedThreadByID

that confused external clients.

<rdar://problem/12599528>

llvm-svn: 167097
This commit is contained in:
Sean Callanan 2012-10-31 02:12:08 +00:00
parent 5bb2673fc8
commit 256cf2cb49
2 changed files with 0 additions and 9 deletions

View File

@ -121,9 +121,6 @@ public:
bool
SetSelectedThread (const lldb::SBThread &thread);
bool
SetSelectedThreadByID (uint32_t tid); // DEPRECATED
bool
SetSelectedThreadByID (lldb::tid_t tid);

View File

@ -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)
{