mirror of
https://github.com/vlang/v.git
synced 2025-09-14 06:52:36 +03:00
slow_tests: use strict pointer casting in asm_test.amd64.v (#24461)
This commit is contained in:
parent
5e61690898
commit
2dd7de41c1
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ mut:
|
||||||
fn (m &Manu) str() string {
|
fn (m &Manu) str() string {
|
||||||
return unsafe {
|
return unsafe {
|
||||||
string{
|
string{
|
||||||
str: m
|
str: &u8(m)
|
||||||
len: 12
|
len: 12
|
||||||
is_lit: 1
|
is_lit: 1
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue