mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 05:17:35 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
1665 changed files with 8479 additions and 8479 deletions
|
@ -29,7 +29,7 @@ struct InstructionData {
|
|||
|
||||
class DisassemblyModel final : public GUI::Model {
|
||||
public:
|
||||
static NonnullRefPtr<DisassemblyModel> create(const Debug::DebugSession& debug_session, const PtraceRegisters& regs)
|
||||
static NonnullRefPtr<DisassemblyModel> create(Debug::DebugSession const& debug_session, PtraceRegisters const& regs)
|
||||
{
|
||||
return adopt_ref(*new DisassemblyModel(debug_session, regs));
|
||||
}
|
||||
|
@ -49,7 +49,7 @@ public:
|
|||
virtual GUI::Variant data(const GUI::ModelIndex&, GUI::ModelRole) const override;
|
||||
|
||||
private:
|
||||
DisassemblyModel(const Debug::DebugSession&, const PtraceRegisters&);
|
||||
DisassemblyModel(Debug::DebugSession const&, PtraceRegisters const&);
|
||||
|
||||
Vector<InstructionData> m_instructions;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue