1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:47:44 +00:00

Kernel/aarch64: Declare TrapFrame as struct

Clang doesn't like misdeclaring classes and structs.
This commit is contained in:
kleines Filmröllchen 2022-12-30 11:40:33 +01:00 committed by Andrew Kaster
parent b7a627ab06
commit 4d475588bb

View file

@ -24,7 +24,7 @@ class PageDirectory;
class Thread;
class Processor;
class TrapFrame;
struct TrapFrame;
// FIXME This needs to go behind some sort of platform abstraction
// it is used between Thread and Processor.