From 89660bf7959ea4d2aeab12e934c60fc0cc18e2ec Mon Sep 17 00:00:00 2001 From: Daniel Malea Date: Fri, 7 Dec 2012 20:51:09 +0000 Subject: More Linux warnings fixes (remove default labels as needed): - as per http://llvm.org/docs/CodingStandards.html#don-t-use-default-labels-in-fully-covered-switches-over-enumerations Patch by Matt Kopec! llvm-svn: 169633 --- lldb/source/Interpreter/ScriptInterpreterPython.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'lldb/source/Interpreter/ScriptInterpreterPython.cpp') diff --git a/lldb/source/Interpreter/ScriptInterpreterPython.cpp b/lldb/source/Interpreter/ScriptInterpreterPython.cpp index 98fe10efa4a..b038e3332e7 100644 --- a/lldb/source/Interpreter/ScriptInterpreterPython.cpp +++ b/lldb/source/Interpreter/ScriptInterpreterPython.cpp @@ -1131,8 +1131,6 @@ ScriptInterpreterPython::ExecuteOneLineWithReturn (const char *in_string, success = PyArg_Parse (py_return, format, (char *) ret_value); break; } - default: - {} } Py_DECREF (py_return); if (success) -- cgit v1.2.3