We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc34431 commit 2bcfbf8Copy full SHA for 2bcfbf8
lldb/source/Symbol/SymbolContext.cpp
@@ -895,12 +895,12 @@ char const *SymbolContext::GetPossiblyInlinedFunctionName(
895
// If we do have an inlined frame name, return that.
896
if (char const *inline_name = inline_info->GetMangled()
897
.GetName(mangling_preference)
898
- .AsCString(nullptr))
+ .AsCString())
899
return inline_name;
900
901
// Sometimes an inline frame may not have mangling information,
902
// but does have a valid name.
903
- return inline_info->GetName().AsCString(nullptr);
+ return inline_info->GetName().AsCString();
904
}
905
906
//
0 commit comments