mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
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:
parent
be51143ac5
commit
0b8a612406
2 changed files with 2 additions and 6 deletions
|
@ -255,7 +255,7 @@ fn (mut a array) push_noscan(val voidptr) {
|
||||||
// push_many implements the functionality for pushing another array.
|
// push_many implements the functionality for pushing another array.
|
||||||
// `val` is array.data and user facing usage is `a << [1,2,3]`
|
// `val` is array.data and user facing usage is `a << [1,2,3]`
|
||||||
@[unsafe]
|
@[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 } {
|
if size <= 0 || val == unsafe { nil } {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
@ -134,11 +134,7 @@ pub fn (mut b Builder) write_string(s string) {
|
||||||
if s.len == 0 {
|
if s.len == 0 {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
$if gcboehm ? {
|
unsafe { b.push_many(s.str, s.len) }
|
||||||
unsafe { b.push_many_noscan(s.str, s.len) }
|
|
||||||
} $else {
|
|
||||||
unsafe { b.push_many(s.str, s.len) }
|
|
||||||
}
|
|
||||||
// for c in s {
|
// for c in s {
|
||||||
// b.buf << c
|
// b.buf << c
|
||||||
// }
|
// }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue