mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-04 06:47:40 +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:
@@ -1044,7 +1044,7 @@ void HackStudioWidget::initialize_debugger()
|
||||
m_project->root_path(),
|
||||
[this](PtraceRegisters const& regs) {
|
||||
VERIFY(Debugger::the().session());
|
||||
const auto& debug_session = *Debugger::the().session();
|
||||
auto const& debug_session = *Debugger::the().session();
|
||||
auto source_position = debug_session.get_source_position(regs.ip());
|
||||
if (!source_position.has_value()) {
|
||||
dbgln("Could not find source position for address: {:p}", regs.ip());
|
||||
|
||||
Reference in New Issue
Block a user