File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -32,11 +32,11 @@ import (
3232// prepare converts an XHash cache or dataset from a byte stream into the internal
3333// int representation. All XHash methods work with ints to avoid constant byte to
3434// int conversions as well as to handle both little and big endian systems.
35- func prepare (dest []uint32 , src []byte ) {
36- for i := 0 ; i < len (dest ); i ++ {
37- dest [i ] = binary .LittleEndian .Uint32 (src [i * 4 :])
38- }
39- }
35+ // func prepare(dest []uint32, src []byte) {
36+ // for i := 0; i < len(dest); i++ {
37+ // dest[i] = binary.LittleEndian.Uint32(src[i*4:])
38+ // }
39+ // }
4040
4141// Tests whether the dataset size calculator works correctly by cross checking the
4242// hard coded lookup table with the value generated by it.
You can’t perform that action at this time.
0 commit comments