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:
parent
0376c127f6
commit
086969277e
1665 changed files with 8479 additions and 8479 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue