Unexported struct fields on selectors

This commit is contained in:
Ginger Bill
2017-02-19 12:47:02 +00:00
parent 6fdcbefe5d
commit c0d5237b75
3 changed files with 39 additions and 18 deletions
-2
View File
@@ -11,8 +11,6 @@ Buffer :: struct {
length: int,
}
buffer_write :: proc(buf: ^Buffer, b: []byte) {
if buf.length < buf.data.count {
n := min(buf.data.count-buf.length, b.count);