Merge commit 'e26567772789c28c79920624e1622a7a3306c560'

This commit is contained in:
2026-05-19 00:06:03 +02:00
+5
View File
@@ -30,6 +30,11 @@ template <typename T>
inline void set_bit(T &val, const std::size_t &bit) {
val |= 1 << bit;
}
template <typename T>
inline void clear_bit(T &val, const std::size_t &bit) {
val &= ~(1 << bit);
}
} // namespace ircolib
constexpr ircolib::u32 operator""_kib(const unsigned long long v) { return v * 1024; }