encoding.hex: fix shift warning
parent
a61b4809dc
commit
d02c0636d8
|
@ -42,7 +42,7 @@ pub fn decode(s string) ?[]byte {
|
||||||
// output will always be a string with length a multiple of 2.
|
// output will always be a string with length a multiple of 2.
|
||||||
[manualfree]
|
[manualfree]
|
||||||
pub fn encode(bytes []byte) string {
|
pub fn encode(bytes []byte) string {
|
||||||
mut sb := strings.new_builder(bytes.len << 1)
|
mut sb := strings.new_builder(bytes.len * 2)
|
||||||
for b in bytes {
|
for b in bytes {
|
||||||
sb.write_string(b.hex())
|
sb.write_string(b.hex())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue