[Lldb-commits] [lldb] [lldb] Fix GCC's `-Wreturn-type` warnings (PR #127974)

via lldb-commits lldb-commits at lists.llvm.org
Thu Feb 20 01:27:02 PST 2025


================
@@ -58,6 +58,8 @@ std::string TypeSummaryImpl::GetSummaryKindName() {
     return "c++";
   case Kind::eBytecode:
     return "bytecode";
+  case default:
+    return "unknown";
----------------
foxtran wrote:

Wow! Thank you! It is much better :-)

https://github.com/llvm/llvm-project/pull/127974


More information about the lldb-commits mailing list