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

ci: fix failing fn_args.vv (use zu8 as a temporary name of the unaliased u8 type, since uu8 is already used in fn_args.vv as a function name)

This commit is contained in:
Delyan Angelov 2021-07-29 10:14:55 +03:00
parent 7a9b326200
commit 7547882c11
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -670,7 +670,7 @@ pub fn (mut t Table) register_builtin_type_symbols() {
}
)
t.register_type_symbol(kind: .interface_, name: 'IError', cname: 'IError', mod: 'builtin')
t.register_type_symbol(kind: .u8, name: 'uu8', cname: 'uu8', mod: 'builtin')
t.register_type_symbol(kind: .u8, name: 'zu8', cname: 'zu8', mod: 'builtin')
}
[inline]