This is an archive of the discontinued LLVM Phabricator instance.

[lldb] Change formatter helper function parameter list to remove ConstString
ClosedPublic

Authored by bulbazord on Apr 11 2023, 2:10 PM.

Details

Summary

All of these functions take a ConstString for the type_name,
but this isn't really needed for two reasons:
1.) This parameter is always constructed from a static c-string

constant.

2.) They are passed along to to AddTypeSummary as a StringRef anyway.

Diff Detail

Event Timeline

bulbazord created this revision.Apr 11 2023, 2:10 PM
Herald added a project: Restricted Project. · View Herald TranscriptApr 11 2023, 2:10 PM
bulbazord requested review of this revision.Apr 11 2023, 2:10 PM
Herald added a project: Restricted Project. · View Herald TranscriptApr 11 2023, 2:10 PM
mib accepted this revision.Apr 11 2023, 2:26 PM

LGTM!

This revision is now accepted and ready to land.Apr 11 2023, 2:26 PM