diff options
author | Caroline Tice <ctice@apple.com> | 2010-09-15 18:29:06 +0000 |
---|---|---|
committer | Caroline Tice <ctice@apple.com> | 2010-09-15 18:29:06 +0000 |
commit | 3f12e8efc1dfefd01998cb863381adb5d29d7cec (patch) | |
tree | 4812b450b1f2fc3e2e204cabbb8cc658e75ed1af /lldb/source/API/SBProcess.cpp | |
parent | 46b96c4ba0b3720d26683e3fc1b7f7aed5c8405a (diff) | |
download | bcm5719-llvm-3f12e8efc1dfefd01998cb863381adb5d29d7cec.tar.gz bcm5719-llvm-3f12e8efc1dfefd01998cb863381adb5d29d7cec.zip |
Remove unnecessary/inappropriate output-printing functions from
the API.
llvm-svn: 113993
Diffstat (limited to 'lldb/source/API/SBProcess.cpp')
-rw-r--r-- | lldb/source/API/SBProcess.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/API/SBProcess.cpp b/lldb/source/API/SBProcess.cpp index b3b083e78ef..0cae975de40 100644 --- a/lldb/source/API/SBProcess.cpp +++ b/lldb/source/API/SBProcess.cpp @@ -342,13 +342,13 @@ SBProcess::AttachByName (const char *name, bool wait_for_launch) } lldb::pid_t -SBProcess::AttachByPID (lldb::pid_t attach_pid) // DEPRECATED: will be removed in a few builds in favor of SBError AttachByPID(pid_t) +SBProcess::AttachByPID (lldb::pid_t attach_pid) // DEPRECATED: will be removed in a few builds in favor of SBError AttachByPID(pid_t) { Attach (attach_pid); return GetProcessID(); } - + SBError SBProcess::Attach (lldb::pid_t attach_pid) { |