diff options
author | Itamar <itamar8910@gmail.com> | 2021-06-19 15:33:03 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-19 14:51:18 +0200 |
commit | 3a4017b419828f289668afebe358a7f486412b99 (patch) | |
tree | 6936e7c7ac4fed00d761a3a6c99e20a9ece68a76 /Userland/Libraries/LibDebug/StackFrameUtils.cpp | |
parent | 03ef2a479a121cef5de5ca33792f4cf997e6ee71 (diff) | |
download | serenity-3a4017b419828f289668afebe358a7f486412b99.zip |
LibDebug: Convert LibDebug to east-const style
Diffstat (limited to 'Userland/Libraries/LibDebug/StackFrameUtils.cpp')
-rw-r--r-- | Userland/Libraries/LibDebug/StackFrameUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibDebug/StackFrameUtils.cpp b/Userland/Libraries/LibDebug/StackFrameUtils.cpp index aac6336644..379de82ec8 100644 --- a/Userland/Libraries/LibDebug/StackFrameUtils.cpp +++ b/Userland/Libraries/LibDebug/StackFrameUtils.cpp @@ -8,7 +8,7 @@ namespace Debug::StackFrameUtils { -Optional<StackFrameInfo> get_info(const DebugSession& session, FlatPtr current_ebp) +Optional<StackFrameInfo> get_info(DebugSession const& session, FlatPtr current_ebp) { auto return_address = session.peek(reinterpret_cast<u32*>(current_ebp + sizeof(FlatPtr))); auto next_ebp = session.peek(reinterpret_cast<u32*>(current_ebp)); |