mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
all: change f mut Foo
to mut f Foo
This commit is contained in:
parent
0b7fe0a9d0
commit
5ae8853648
36 changed files with 62 additions and 65 deletions
|
@ -17,7 +17,7 @@ const (
|
|||
_k3 = 0xCA62C1D6
|
||||
)
|
||||
|
||||
fn block_generic(dig mut Digest, p_ []byte) {
|
||||
fn block_generic(mut dig Digest, p_ []byte) {
|
||||
mut p := p_
|
||||
mut w := [u32(0)].repeat(16)
|
||||
mut h0 := dig.h[0]
|
||||
|
@ -113,7 +113,7 @@ fn block_generic(dig mut Digest, p_ []byte) {
|
|||
} else {
|
||||
p = p[chunk..]
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
dig.h[0] = h0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue