From acdda1344a0e1b45bd3ba7feb0e8cd398bee0179 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Sat, 21 Dec 2019 21:54:44 -0800 Subject: [lldb/Lua] Add missing boiler plate to ScriptInterpreter. - Fix enum entry order. - Fix missing enum case in CommandObjectBreakpointCommand. - Add Lua entry to swtich in LanguageToString and simplify the code. --- lldb/source/Commands/CommandObjectBreakpointCommand.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'lldb/source/Commands/CommandObjectBreakpointCommand.cpp') diff --git a/lldb/source/Commands/CommandObjectBreakpointCommand.cpp b/lldb/source/Commands/CommandObjectBreakpointCommand.cpp index d62fe51..551d0ac 100644 --- a/lldb/source/Commands/CommandObjectBreakpointCommand.cpp +++ b/lldb/source/Commands/CommandObjectBreakpointCommand.cpp @@ -307,6 +307,7 @@ are no syntax errors may indicate that a function was declared but never called. m_use_script_language = true; break; case eScriptLanguageNone: + case eScriptLanguageUnknown: m_use_script_language = false; break; } -- cgit v1.1