Skip to content

Commit

Permalink
Revert "strings: fix using array_push_many inside write_string + gc, …
Browse files Browse the repository at this point in the history
…not using array_push_many_noscan (part 1)"

This reverts commit be51143.
  • Loading branch information
spytheman committed Dec 1, 2023
1 parent be51143 commit 0b8a612
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion vlib/builtin/array_d_gcboehm_opt.v
Expand Up @@ -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
}
Expand Down
6 changes: 1 addition & 5 deletions vlib/strings/builder.c.v
Expand Up @@ -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
// }
Expand Down

0 comments on commit 0b8a612

Please sign in to comment.