[Lldb-commits] [lldb] [lldb][libc++] Adds valarray data formatters. (PR #80609)

Dave Lee via lldb-commits lldb-commits at lists.llvm.org
Sun Feb 4 13:27:13 PST 2024


================
@@ -750,6 +750,11 @@ static void LoadLibCxxFormatters(lldb::TypeCategoryImplSP cpp_category_sp) {
       lldb_private::formatters::LibcxxStdVectorSyntheticFrontEndCreator,
       "libc++ std::vector synthetic children",
       "^std::__[[:alnum:]]+::vector<.+>$", stl_deref_flags, true);
+  AddCXXSynthetic(
+      cpp_category_sp,
+      lldb_private::formatters::LibcxxStdValarraySyntheticFrontEndCreator,
+      "libc++ std::valarray synthetic children",
+      "^std::__[[:alnum:]]+::valarray<.+>(( )?&)?$", stl_deref_flags, true);
----------------
kastiglione wrote:

Not needed, and relatedly I removed a bunch of these https://github.com/llvm/llvm-project/pull/79644

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


More information about the lldb-commits mailing list