1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

all: replace []byte with []u8

This commit is contained in:
Alexander Medvednikov
2022-04-15 15:35:35 +03:00
parent 0527ac633e
commit fb192d949b
164 changed files with 533 additions and 533 deletions

View File

@@ -45,7 +45,7 @@ mut:
******************************************************************************/
pub struct TTF_File {
pub mut:
buf []byte
buf []u8
pos u32
length u16
scalar_type u32
@@ -319,7 +319,7 @@ fn (mut tf TTF_File) read_simple_glyph(mut in_glyph Glyph) {
num_points++
mut i := 0
mut flags := []byte{}
mut flags := []u8{}
for i < num_points {
flag := tf.get_u8()
flags << flag