LibDebug: Use Core::Stream to read opcodes for expression evaluation

This commit is contained in:
Tim Schumacher 2023-01-22 00:51:45 +01:00 committed by Andreas Kling
commit a9eea2e0c4
Notes: sideshowbarker 2024-07-17 07:25:39 +09:00
3 changed files with 7 additions and 8 deletions

View file

@ -32,6 +32,6 @@ enum class Operations : u8 {
FbReg = 0x91,
};
Value evaluate(ReadonlyBytes, PtraceRegisters const&);
ErrorOr<Value> evaluate(ReadonlyBytes, PtraceRegisters const&);
}