1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 20:25:07 +00:00

LibDebug: Use InputMemoryStream instead of BufferStream.

This removes another call to ByteBuffer::wrap(const void*, size_t).
This commit is contained in:
asynts 2020-08-05 10:55:36 +02:00 committed by Andreas Kling
parent 5bfa7749c3
commit ac9f6fd1f8
12 changed files with 125 additions and 106 deletions

View file

@ -31,8 +31,7 @@
class PtraceRegisters;
namespace Dwarf {
namespace Expression {
namespace Dwarf::Expression {
enum class Type {
None,
@ -52,7 +51,6 @@ enum class Operations : u8 {
FbReg = 0x91,
};
Value evaluate(const ByteBuffer&, const PtraceRegisters&);
Value evaluate(ReadonlyBytes, const PtraceRegisters&);
}
}