Skip to content

Commit

Permalink
Merge pull request #114 from alexkashintsev-tomtom/wasi
Browse files Browse the repository at this point in the history
Add wasi directives for tinygo
  • Loading branch information
oschwald committed Aug 1, 2023
2 parents 93d288b + da4d15d commit 9a0fd9e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions mmap_unix.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build !windows && !appengine && !plan9 && !js && !wasip1
// +build !windows,!appengine,!plan9,!js,!wasip1
//go:build !windows && !appengine && !plan9 && !js && !wasip1 && !wasi
// +build !windows,!appengine,!plan9,!js,!wasip1,!wasi

package maxminddb

Expand Down
4 changes: 2 additions & 2 deletions reader_memory.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build appengine || plan9 || js || wasip1
// +build appengine plan9 js wasip1
//go:build appengine || plan9 || js || wasip1 || wasi
// +build appengine plan9 js wasip1 wasi

package maxminddb

Expand Down
4 changes: 2 additions & 2 deletions reader_mmap.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build !appengine && !plan9 && !js && !wasip1
// +build !appengine,!plan9,!js,!wasip1
//go:build !appengine && !plan9 && !js && !wasip1 && !wasi
// +build !appengine,!plan9,!js,!wasip1,!wasi

package maxminddb

Expand Down

0 comments on commit 9a0fd9e

Please sign in to comment.