1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:07:34 +00:00

Everywhere: Run clang-format

This commit is contained in:
Idan Horowitz 2022-04-01 20:58:27 +03:00 committed by Linus Groh
parent 0376c127f6
commit 086969277e
1665 changed files with 8479 additions and 8479 deletions

View file

@ -26,10 +26,10 @@ public:
bool is_tracing_syscalls() const { return m_trace_syscalls; }
void set_trace_syscalls(bool val) { m_trace_syscalls = val; }
void set_regs(const RegisterState& regs);
void set_regs(const PtraceRegisters& regs) { m_regs = regs; }
void set_regs(RegisterState const& regs);
void set_regs(PtraceRegisters const& regs) { m_regs = regs; }
bool has_regs() const { return m_regs.has_value(); }
const PtraceRegisters& regs() const
PtraceRegisters const& regs() const
{
VERIFY(m_regs.has_value());
return m_regs.value();