Skip to content

Commit 2bcfbf8

Browse files
committed
fixup! remove redundant parameter
1 parent fc34431 commit 2bcfbf8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Symbol/SymbolContext.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -895,12 +895,12 @@ char const *SymbolContext::GetPossiblyInlinedFunctionName(
895895
// If we do have an inlined frame name, return that.
896896
if (char const *inline_name = inline_info->GetMangled()
897897
.GetName(mangling_preference)
898-
.AsCString(nullptr))
898+
.AsCString())
899899
return inline_name;
900900

901901
// Sometimes an inline frame may not have mangling information,
902902
// but does have a valid name.
903-
return inline_info->GetName().AsCString(nullptr);
903+
return inline_info->GetName().AsCString();
904904
}
905905

906906
//

0 commit comments

Comments
 (0)