[Lldb-commits] [lldb] [LLDB] Add formatters for MSVC STL std::shared_ptr (PR #147575)

via lldb-commits lldb-commits at lists.llvm.org
Wed Jul 9 07:31:16 PDT 2025


================
@@ -1636,6 +1622,36 @@ static void LoadCommonStlFormatters(lldb::TypeCategoryImplSP cpp_category_sp) {
             return LibStdcppStringSummaryProvider(valobj, stream, options);
           },
           "MSVC STL/libstdc++ std::wstring summary provider"));
+
+  auto smart_ptr_creator =
----------------
Nerixyz wrote:

This will be a problem for the other types as well. What about having a `Common{Type}SyntheticFrontEndCreator` and `Common{Type}SummaryProvider` in `Generic.h` (or maybe a new header)?

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


More information about the lldb-commits mailing list