1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:47:34 +00:00

UserspaceEmulator: Remove hand-rolled is_foo() helpers in favor of RTTI

This commit is contained in:
Andreas Kling 2021-01-01 19:37:36 +01:00
parent db790dda62
commit febc8a5ac7
7 changed files with 13 additions and 17 deletions

View file

@ -65,7 +65,6 @@ public:
private:
MmapRegion(u32 base, u32 size, int prot);
virtual bool is_mmap() const override { return true; }
u8* m_data { nullptr };
u8* m_shadow_data { nullptr };