mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-23 08:57:28 +00:00
Everywhere: Use east const in more places
These changes are compatible with clang-format 16 and will be mandatory when we eventually bump clang-format version. So, since there are no real downsides, let's commit them now.
This commit is contained in:
@@ -187,7 +187,7 @@ int Debugger::debugger_loop(Debug::DebugSession::DesiredInitialDebugeeState init
|
||||
}
|
||||
remove_temporary_breakpoints();
|
||||
VERIFY(optional_regs.has_value());
|
||||
const PtraceRegisters& regs = optional_regs.value();
|
||||
PtraceRegisters const& regs = optional_regs.value();
|
||||
|
||||
auto source_position = m_debug_session->get_source_position(regs.ip());
|
||||
if (!source_position.has_value())
|
||||
|
||||
Reference in New Issue
Block a user