mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
compiler: cast correctly strings between byte* and char* when needed
This commit is contained in:
committed by
Alexander Medvednikov
parent
0a0d6536c2
commit
ad32a3770b
@@ -779,7 +779,7 @@ fn (p mut Parser) fn_call_args(f mut Fn) *Fn {
|
||||
file_path := p.file_path.replace('\\', '\\\\') // escape \
|
||||
p.cgen.resetln(p.cgen.cur_line.replace(
|
||||
'v_panic (',
|
||||
'_panic_debug ($p.scanner.line_nr, tos2("$file_path"), tos2("$mod_name"), tos2("$fn_name"), '
|
||||
'_panic_debug ($p.scanner.line_nr, tos2((byte *)"$file_path"), tos2((byte *)"$mod_name"), tos2((byte *)"$fn_name"), '
|
||||
))
|
||||
}
|
||||
// Receiver - first arg
|
||||
|
||||
Reference in New Issue
Block a user