corrected annotation for method clear in struct MoveBuffer

This commit is contained in:
Varga Dávid Lajos
2025-11-19 16:00:09 +01:00
parent 5340744abe
commit 547b0e51cb

View File

@@ -20,7 +20,7 @@ impl MoveBuffer {
self.buffer[self.count] = bitmove;
self.count += 1;
}
#[inline]
#[inline(always)]
pub fn clear(&mut self) {
self.count = 0;
}