[Lldb-commits] [lldb] r263830 - Added a break statement that was needed. Caught by clang's unannotated case fall through warning.

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Fri Mar 18 13:53:35 PDT 2016


Author: gclayton
Date: Fri Mar 18 15:53:35 2016
New Revision: 263830

URL: http://llvm.org/viewvc/llvm-project?rev=263830&view=rev
Log:
Added a break statement that was needed. Caught by clang's unannotated case fall through warning.

Modified:
    lldb/trunk/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp

Modified: lldb/trunk/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp?rev=263830&r1=263829&r2=263830&view=diff
==============================================================================
--- lldb/trunk/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp (original)
+++ lldb/trunk/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp Fri Mar 18 15:53:35 2016
@@ -770,7 +770,8 @@ CMICmnLLDBDebuggerHandleEvents::HandleEv
         //  m_pClientDriver->SetExitApplicationFlag();
         //  vrbYesExit = true;
         //  return MIstatus::success;
-        //}     break;
+        //}
+            break;
         case lldb::SBCommandInterpreter::eBroadcastBitResetPrompt:
             pEventType = "eBroadcastBitResetPrompt";
             break;




More information about the lldb-commits mailing list