Skip to content

Commit ac7a175

Browse files
committed
BreakPoints: Fix shadowing warning
1 parent 3bd6554 commit ac7a175

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Core/Core/PowerPC/BreakPoints.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ bool BreakPoints::IsTempBreakPoint(u32 address) const
3939
const TBreakPoint* BreakPoints::GetBreakpoint(u32 address) const
4040
{
4141
auto bp = std::find_if(m_breakpoints.begin(), m_breakpoints.end(),
42-
[address](const auto& bp) { return bp.address == address; });
42+
[address](const auto& bp_) { return bp_.address == address; });
4343

4444
if (bp == m_breakpoints.end())
4545
return nullptr;

0 commit comments

Comments
 (0)