[Lldb-commits] [lldb] [LLDB] Support exception breakpoints for plugin-provided languages (PR #97675)
Walter Erquinigo via lldb-commits
lldb-commits at lists.llvm.org
Thu Jul 4 07:03:33 PDT 2024
================
@@ -319,6 +316,12 @@ class CommandObjectBreakpointSet : public CommandObjectParsed {
error_context = "Unknown language type for exception breakpoint";
break;
default:
+ if (Language *languagePlugin = Language::FindPlugin(language)) {
----------------
walter-erquinigo wrote:
Within switch statements I tend to be very paranoid with braces
https://github.com/llvm/llvm-project/pull/97675
More information about the lldb-commits
mailing list