Skip to content

Commit aefc53c

Browse files
committed
fix(lldb): consistent <unnamed> clang summary
1 parent 4887496 commit aefc53c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

share/lldb/mrdocs_formatters.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@ def InfoLikeSummaryProvider(valobj, _dict):
123123
try:
124124
name_val = _find_std_string_name(valobj)
125125
if not name_val:
126-
return "<no Name>"
126+
return "<unnamed>"
127127
s = _string_from_std_string(name_val)
128-
return s if s else "<Name unreadable>"
128+
return s if s else "<unnamed>"
129129
except Exception as e:
130130
return f"<summary error: {e}>"
131131

0 commit comments

Comments
 (0)