aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-02-19 12:47:02 +0000
committerGinger Bill <bill@gingerbill.org>2017-02-19 12:47:02 +0000
commitc0d5237b75b1ce19ee0e003dcd2dcffa66c442fd (patch)
treed1e4469d9c0248944be388f85bc2df0b914a0008 /core
parent6fdcbefe5d488deea2825d908ff36af624e170d2 (diff)
Unexported struct fields on selectors
Diffstat (limited to 'core')
-rw-r--r--core/fmt.odin2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/fmt.odin b/core/fmt.odin
index 6e0856ecb..d340bbe5d 100644
--- a/core/fmt.odin
+++ b/core/fmt.odin
@@ -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);