Skip to content

Commit 5f6ad22

Browse files
committed
fixup! fix build failure
1 parent 7d8455b commit 5f6ad22

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lldb/source/Core/FormatEntity.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1692,8 +1692,8 @@ bool FormatEntity::Format(const Entry &entry, Stream &s,
16921692
return true;
16931693
}
16941694

1695-
const char *name = GetPossiblyInlinedFunctionName(
1696-
*sc, Mangled::NamePreference::ePreferDemangled);
1695+
const char *name = sc->GetPossiblyInlinedFunctionName(
1696+
Mangled::NamePreference::ePreferDemangled);
16971697
if (!name)
16981698
return false;
16991699

@@ -1724,8 +1724,8 @@ bool FormatEntity::Format(const Entry &entry, Stream &s,
17241724
return true;
17251725
}
17261726

1727-
const char *name = GetPossiblyInlinedFunctionName(
1728-
*sc, Mangled::NamePreference::ePreferDemangledWithoutArguments);
1727+
const char *name = sc->GetPossiblyInlinedFunctionName(
1728+
Mangled::NamePreference::ePreferDemangledWithoutArguments);
17291729
if (!name)
17301730
return false;
17311731

@@ -1773,8 +1773,8 @@ bool FormatEntity::Format(const Entry &entry, Stream &s,
17731773
if (!sc)
17741774
return false;
17751775

1776-
const char *name = GetPossiblyInlinedFunctionName(
1777-
*sc, Mangled::NamePreference::ePreferMangled);
1776+
const char *name = sc->GetPossiblyInlinedFunctionName(
1777+
Mangled::NamePreference::ePreferMangled);
17781778
if (!name)
17791779
return false;
17801780

0 commit comments

Comments
 (0)