Skip to content

Commit ace5df7

Browse files
committed
ci: workaround -usecache issue afte 2d87ac4
1 parent 2d87ac4 commit ace5df7

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

vlib/math/bits/bits.v

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,9 @@ pub fn sub_64(x u64, y u64, borrow u64) (u64, u64) {
364364
}
365365

366366
// --- Full-width multiply ---
367-
const two32 = u64(0x100000000)
367+
368+
@[markused]
369+
pub const two32 = u64(0x100000000)
368370
const mask32 = two32 - 1
369371
const overflow_error = 'Overflow Error'
370372
const divide_error = 'Divide Error'

0 commit comments

Comments
 (0)