Browse Source

Remove private attributes for #3227

gingerBill 1 year ago
parent
commit
670fc70f1f
2 changed files with 0 additions and 3 deletions
  1. 0 1
      core/bufio/writer.odin
  2. 0 2
      core/io/multi.odin

+ 0 - 1
core/bufio/writer.odin

@@ -226,7 +226,6 @@ writer_to_writer :: proc(b: ^Writer) -> (s: io.Writer) {
 
 
 
-@(private)
 _writer_proc :: proc(stream_data: rawptr, mode: io.Stream_Mode, p: []byte, offset: i64, whence: io.Seek_From) -> (n: i64, err: io.Error) {
 	b := (^Writer)(stream_data)
 	#partial switch mode {

+ 0 - 2
core/io/multi.odin

@@ -4,7 +4,6 @@ Multi_Reader :: struct {
 	readers: [dynamic]Reader,
 }
 
-@(private)
 _multi_reader_proc :: proc(stream_data: rawptr, mode: Stream_Mode, p: []byte, offset: i64, whence: Seek_From) -> (n: i64, err: Error) {
 	if mode == .Query {
 		return query_utility({.Read, .Query})
@@ -58,7 +57,6 @@ Multi_Writer :: struct {
 	writers: [dynamic]Writer,
 }
 
-@(private)
 _multi_writer_proc :: proc(stream_data: rawptr, mode: Stream_Mode, p: []byte, offset: i64, whence: Seek_From) -> (n: i64, err: Error) {
 	if mode == .Query {
 		return query_utility({.Write, .Query})