@@ -788,7 +788,7 @@ static void LoadLibCxxFormatters(lldb::TypeCategoryImplSP cpp_category_sp) {
788
788
cpp_category_sp,
789
789
lldb_private::formatters::LibcxxStdUnorderedMapSyntheticFrontEndCreator,
790
790
" libc++ std::unordered containers synthetic children" ,
791
- " ^( std::__[[:alnum:]]+::) unordered_(multi)?(map|set)<.+> >$" ,
791
+ " ^std::__[[:alnum:]]+::unordered_(multi)?(map|set)<.+> >$" ,
792
792
stl_synth_flags, true );
793
793
AddCXXSynthetic (
794
794
cpp_category_sp,
@@ -824,16 +824,16 @@ static void LoadLibCxxFormatters(lldb::TypeCategoryImplSP cpp_category_sp) {
824
824
" ^std::__[[:alnum:]]+::ranges::ref_view<.+>$" , stl_deref_flags, true );
825
825
826
826
cpp_category_sp->AddTypeSynthetic (
827
- " ^( std::__[[:alnum:]]+::) deque<.+>$" , eFormatterMatchRegex,
827
+ " ^std::__[[:alnum:]]+::deque<.+>$" , eFormatterMatchRegex,
828
828
SyntheticChildrenSP (new ScriptedSyntheticChildren (
829
829
stl_synth_flags,
830
830
" lldb.formatters.cpp.libcxx.stddeque_SynthProvider" )));
831
831
832
832
AddCXXSynthetic (
833
833
cpp_category_sp,
834
834
lldb_private::formatters::LibcxxSharedPtrSyntheticFrontEndCreator,
835
- " shared_ptr synthetic children" ,
836
- " ^(std::__[[:alnum:]]+::)shared_ptr<.+>$ " , stl_synth_flags, true );
835
+ " shared_ptr synthetic children" , " ^std::__[[:alnum:]]+::shared_ptr<.+>$ " ,
836
+ stl_synth_flags, true );
837
837
838
838
static constexpr const char *const libcxx_std_unique_ptr_regex =
839
839
" ^std::__[[:alnum:]]+::unique_ptr<.+>$" ;
@@ -846,7 +846,7 @@ static void LoadLibCxxFormatters(lldb::TypeCategoryImplSP cpp_category_sp) {
846
846
AddCXXSynthetic (
847
847
cpp_category_sp,
848
848
lldb_private::formatters::LibcxxSharedPtrSyntheticFrontEndCreator,
849
- " weak_ptr synthetic children" , " ^( std::__[[:alnum:]]+::) weak_ptr<.+>$" ,
849
+ " weak_ptr synthetic children" , " ^std::__[[:alnum:]]+::weak_ptr<.+>$" ,
850
850
stl_synth_flags, true );
851
851
AddCXXSummary (cpp_category_sp,
852
852
lldb_private::formatters::LibcxxFunctionSummaryProvider,
@@ -910,7 +910,7 @@ static void LoadLibCxxFormatters(lldb::TypeCategoryImplSP cpp_category_sp) {
910
910
AddCXXSummary (cpp_category_sp,
911
911
lldb_private::formatters::LibcxxContainerSummaryProvider,
912
912
" libc++ std::unordered containers summary provider" ,
913
- " ^( std::__[[:alnum:]]+::) unordered_(multi)?(map|set)<.+> >$" ,
913
+ " ^std::__[[:alnum:]]+::unordered_(multi)?(map|set)<.+> >$" ,
914
914
stl_summary_flags, true );
915
915
AddCXXSummary (cpp_category_sp, LibcxxContainerSummaryProvider,
916
916
" libc++ std::tuple summary provider" ,
0 commit comments