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

builtin: fix -d no_backtrace error with tcc

This commit is contained in:
Delyan Angelov 2021-07-17 18:09:16 +03:00
parent 568aa742b2
commit ee9e91b8e7
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -33,10 +33,10 @@ fn print_backtrace_skipping_top_frames(xskipframes int) bool {
return print_backtrace_skipping_top_frames_linux(skipframes) return print_backtrace_skipping_top_frames_linux(skipframes)
} $else { } $else {
println('print_backtrace_skipping_top_frames is not implemented. skipframes: $skipframes') println('print_backtrace_skipping_top_frames is not implemented. skipframes: $skipframes')
}
}
return false return false
} }
}
}
// the functions below are not called outside this file, // the functions below are not called outside this file,
// so there is no need to have their twins in builtin_windows.v // so there is no need to have their twins in builtin_windows.v