Files
sqlite3/internal/util/mmap_other.go
2024-05-17 17:30:43 +01:00

12 lines
237 B
Go

//go:build !(darwin || linux || windows) || !(amd64 || arm64 || riscv64) || sqlite3_noshm || sqlite3_nosys
package util
import "context"
type mmapState struct{}
func withAllocator(ctx context.Context) context.Context {
return ctx
}