mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
ci: workaround -usecache issue afte 2d87ac4
This commit is contained in:
parent
2d87ac4837
commit
ace5df7236
1 changed files with 3 additions and 1 deletions
|
@ -364,7 +364,9 @@ pub fn sub_64(x u64, y u64, borrow u64) (u64, u64) {
|
|||
}
|
||||
|
||||
// --- Full-width multiply ---
|
||||
const two32 = u64(0x100000000)
|
||||
|
||||
@[markused]
|
||||
pub const two32 = u64(0x100000000)
|
||||
const mask32 = two32 - 1
|
||||
const overflow_error = 'Overflow Error'
|
||||
const divide_error = 'Divide Error'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue