optimize readv on windows

pull/1524/head^2
Darien Raymond 2018-07-27 23:40:12 +02:00
parent f99fb3d87d
commit c15184d904
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
1 changed files with 2 additions and 2 deletions

View File

@ -7,8 +7,8 @@ import (
"syscall" "syscall"
) )
var useReadv = false const useReadv = false
func NewReadVReader(reader io.Reader, rawConn syscall.RawConn) Reader { func NewReadVReader(reader io.Reader, rawConn syscall.RawConn) Reader {
return nil panic("Shoud not happen")
} }