LibDebug: Convert LibDebug to east-const style

This commit is contained in:
Itamar 2021-06-19 15:33:03 +03:00 committed by Andreas Kling
commit 3a4017b419
Notes: sideshowbarker 2024-07-18 12:01:03 +09:00
17 changed files with 68 additions and 68 deletions

View file

@ -18,6 +18,6 @@ struct StackFrameInfo {
FlatPtr next_ebp;
};
Optional<StackFrameInfo> get_info(const DebugSession&, FlatPtr current_ebp);
Optional<StackFrameInfo> get_info(DebugSession const&, FlatPtr current_ebp);
}