From 8c9ecc50109ef8d0ff623f7ae4771e2fd7da1200 Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Thu, 28 Sep 2017 01:39:07 +0000 Subject: Revert patch r313904, as it breaks "command source" and in particular causes lldb to die on startup if you have a ~/.lldbinit file. I filed: https://bugs.llvm.org/show_bug.cgi?id=34758 to cover fixing the bug. llvm-svn: 314371 --- lldb/source/API/SBCommandInterpreter.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'lldb/source/API') diff --git a/lldb/source/API/SBCommandInterpreter.cpp b/lldb/source/API/SBCommandInterpreter.cpp index c9bb8f65fa2..aa4953999b8 100644 --- a/lldb/source/API/SBCommandInterpreter.cpp +++ b/lldb/source/API/SBCommandInterpreter.cpp @@ -161,10 +161,6 @@ bool SBCommandInterpreter::IsActive() { return (IsValid() ? m_opaque_ptr->IsActive() : false); } -bool SBCommandInterpreter::WasInterrupted() const { - return (IsValid() ? m_opaque_ptr->WasInterrupted() : false); -} - const char *SBCommandInterpreter::GetIOHandlerControlSequence(char ch) { return (IsValid() ? m_opaque_ptr->GetDebugger() -- cgit v1.2.3