Convert Interrupts

This commit is contained in:
Jaby Blubb
2023-09-17 22:25:54 +02:00
parent e2c8283076
commit ec09918254
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 {