diff options
author | Enrico Granata <egranata@apple.com> | 2012-10-16 21:11:14 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2012-10-16 21:11:14 +0000 |
commit | 430e540b6b602430490d87001cc386101172ccf4 (patch) | |
tree | b960e53b46297f294d904595d50dfd19390b06de /lldb/source/API/SBCommandReturnObject.cpp | |
parent | 8db50561b0e4fe7baa1b0b1e7cd03cd4bc4975cd (diff) | |
download | bcm5719-llvm-430e540b6b602430490d87001cc386101172ccf4.tar.gz bcm5719-llvm-430e540b6b602430490d87001cc386101172ccf4.zip |
Removing the two extra GetXSize(bool) calls since we do not desire to support them long-term
llvm-svn: 166060
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()) |