1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

bultin: mark unsafe functions

This commit is contained in:
Alexander Medvednikov
2019-10-20 20:29:24 +03:00
parent c13b58e6db
commit 81b1b882fd
2 changed files with 4 additions and 2 deletions

View File

@@ -39,5 +39,5 @@ pub fn (b mut Builder) cut(n int) {
}
pub fn (b mut Builder) free() {
free(b.buf.data)
//free(b.buf.data)
}