kernel: Fix compilation with Clang 21

This commit is contained in:
Mike Lothian 2025-08-28 18:31:20 +01:00
parent a9cde6f765
commit b83c049b4c

View File

@ -539,7 +539,7 @@ public:
}
void ClearDpc(DpcFlag flag) {
this->GetStackParameters().dpc_flags &= ~static_cast<u8>(flag);
this->GetStackParameters().dpc_flags &= static_cast<u8>(~static_cast<u8>(flag));
}
u8 GetDpc() const {