libbpf commit: 20ea95b4505c477af3b6ff6ce9d19cee868ddc5d
@@ -47,7 +47,11 @@ where
index % 8
};
let mask = 1 << bit_index;
- if val { byte | mask } else { byte & !mask }
+ if val {
+ byte | mask
+ } else {
+ byte & !mask
+ }
}
#[inline]
pub fn set_bit(&mut self, index: usize, val: bool) {
@@ -45,7 +45,11 @@ where