mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 05:59:14 +00:00
12 lines
237 B
Go
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
|
|
}
|