Skip to content

Commit 0072f08

Browse files
committed
tidy
1 parent 23b1a5c commit 0072f08

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/etc/lldb_providers.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -651,6 +651,7 @@ def get_type_name(self) -> str:
651651

652652
return name
653653

654+
654655
def StructSummaryProvider(valobj: SBValue, _dict: LLDBOpaque) -> str:
655656
output = []
656657
for i in range(valobj.GetNumChildren()):
@@ -665,6 +666,7 @@ def StructSummaryProvider(valobj: SBValue, _dict: LLDBOpaque) -> str:
665666

666667
return "{" + ", ".join(output) + "}"
667668

669+
668670
def MSVCEnumSummaryProvider(valobj: SBValue, _dict: LLDBOpaque) -> str:
669671
enum_synth = MSVCEnumSyntheticProvider(valobj.GetNonSyntheticValue(), _dict)
670672
variant_names: SBType = valobj.target.FindFirstType(

0 commit comments

Comments
 (0)