Convert Interrupts

This commit is contained in:
Jaby
2023-09-17 22:25:54 +02:00
committed by Jaby
parent 15d8d39879
commit fd016fa98c
2 changed files with 11 additions and 11 deletions

View File

@@ -65,7 +65,7 @@ namespace JabyEngine {
constexpr T& clear2(Bit bit) {
this->raw = bit::clear(this->raw, bit);
return *this;
return static_cast<T&>(*this);
}
constexpr bool is_set2(Bit bit) const {