mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
use ++ everywhere
This commit is contained in:
@ -19,7 +19,7 @@ pub fn new_builder(initial_size int) Builder {
|
||||
|
||||
pub fn (b mut Builder) write_b(data byte) {
|
||||
b.buf << data
|
||||
b.len += 1
|
||||
b.len++
|
||||
}
|
||||
|
||||
pub fn (b mut Builder) write(s string) {
|
||||
|
Reference in New Issue
Block a user