diff options
Diffstat (limited to 'lldb/source/API/SBCommandReturnObject.cpp')
-rw-r--r-- | lldb/source/API/SBCommandReturnObject.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lldb/source/API/SBCommandReturnObject.cpp b/lldb/source/API/SBCommandReturnObject.cpp index e923bba1041..4d0ffc75fe3 100644 --- a/lldb/source/API/SBCommandReturnObject.cpp +++ b/lldb/source/API/SBCommandReturnObject.cpp @@ -306,26 +306,6 @@ SBCommandReturnObject::GetError (bool only_if_no_immediate) } size_t -SBCommandReturnObject::GetErrorSize (bool only_if_no_immediate) -{ - if (!m_opaque_ap.get()) - return NULL; - if (only_if_no_immediate == false || m_opaque_ap->GetImmediateErrorStream().get() == NULL) - return GetErrorSize(); - return NULL; -} - -size_t -SBCommandReturnObject::GetOutputSize (bool only_if_no_immediate) -{ - if (!m_opaque_ap.get()) - return NULL; - if (only_if_no_immediate == false || m_opaque_ap->GetImmediateOutputStream().get() == NULL) - return GetOutputSize(); - return NULL; -} - -size_t SBCommandReturnObject::Printf(const char* format, ...) { if (m_opaque_ap.get()) |