Skip to content

Commit

Permalink
fix(internal/json): add arrow_json_stdlib build tag
Browse files Browse the repository at this point in the history
  • Loading branch information
toddtreece committed Nov 25, 2024
1 parent e112ad0 commit 0171ae5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions internal/json/json.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build !tinygo
// +build !tinygo
//go:build !tinygo && !arrow_json_stdlib
// +build !tinygo,!arrow_json_stdlib

package json

Expand Down
4 changes: 2 additions & 2 deletions internal/json/json_tinygo.go → internal/json/json_stdlib.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build tinygo
// +build tinygo
//go:build tinygo || arrow_json_stdlib
// +build tinygo arrow_json_stdlib

package json

Expand Down

0 comments on commit 0171ae5

Please sign in to comment.