mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-23 12:16:38 +00:00
cc4f773b0e
This includes support for journal mode set to WAL on the BSDs. Relates to: #1753, #2962
10 lines
200 B
Go
10 lines
200 B
Go
//go:build !(unix || windows) || sqlite3_nosys
|
|
|
|
package alloc
|
|
|
|
import "github.com/tetratelabs/wazero/experimental"
|
|
|
|
func Virtual(cap, max uint64) experimental.LinearMemory {
|
|
return Slice(cap, max)
|
|
}
|