Revert "strings: fix using array_push_many inside write_string + gc, not using array_push_many_noscan (part 1)"

This reverts commit be51143ac5.
This commit is contained in:
Delyan Angelov 2023-12-01 21:45:35 +02:00
parent be51143ac5
commit 0b8a612406
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED
2 changed files with 2 additions and 6 deletions

View file

@ -255,7 +255,7 @@ fn (mut a array) push_noscan(val voidptr) {
// push_many implements the functionality for pushing another array.
// `val` is array.data and user facing usage is `a << [1,2,3]`
@[unsafe]
pub fn (mut a3 array) push_many_noscan(val voidptr, size int) {
fn (mut a3 array) push_many_noscan(val voidptr, size int) {
if size <= 0 || val == unsafe { nil } {
return
}

View file

@ -134,11 +134,7 @@ pub fn (mut b Builder) write_string(s string) {
if s.len == 0 {
return
}
$if gcboehm ? {
unsafe { b.push_many_noscan(s.str, s.len) }
} $else {
unsafe { b.push_many(s.str, s.len) }
}
unsafe { b.push_many(s.str, s.len) }
// for c in s {
// b.buf << c
// }