mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
strings: comment deprecation of Builder.write_bytes temporarily
This commit is contained in:
parent
1eb3ed9818
commit
400b4027c9
@ -25,7 +25,7 @@ pub fn new_builder(initial_size int) Builder {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// write_bytes appends `bytes` to the accumulated buffer
|
// write_bytes appends `bytes` to the accumulated buffer
|
||||||
[deprecated: 'use Builder.write_ptr() instead']
|
//[deprecated: 'use Builder.write_ptr() instead']
|
||||||
[unsafe]
|
[unsafe]
|
||||||
pub fn (mut b Builder) write_bytes(bytes byteptr, len int) {
|
pub fn (mut b Builder) write_bytes(bytes byteptr, len int) {
|
||||||
unsafe { b.write_ptr(bytes, len) }
|
unsafe { b.write_ptr(bytes, len) }
|
||||||
|
Loading…
Reference in New Issue
Block a user