Disabled linter on field 'dataref'

Signed-off-by: Benjamin Wang <wachao@vmware.com>
pull/366/head
Benjamin Wang 2022-12-27 14:51:10 +08:00
parent d04dc0c2d0
commit 99fe21f5e0
1 changed files with 3 additions and 0 deletions

3
db.go
View File

@ -129,6 +129,9 @@ type DB struct {
path string
openFile func(string, int, os.FileMode) (*os.File, error)
file *os.File
// `dataref` isn't used at all on Windows, and the golangci-lint
// always fails on Windows platform.
//nolint
dataref []byte // mmap'ed readonly, write throws SEGV
data *[maxMapSize]byte
datasz int