Skip to content

Commit

Permalink
fix 32-bit more
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed Dec 21, 2023
1 parent 792fa3c commit d17a31f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .codecov.yml

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The Example.jl package is licensed under the MIT "Expat" License:
The JSON.jl package is licensed under the MIT "Expat" License:

> Copyright (c) 2022: Jacob Quinn
>
Expand Down
2 changes: 1 addition & 1 deletion test/json.jl
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ end
# SimpleVector writing
@test JSONBase.json(Core.svec(1, 2, 3)) == "[1,2,3]"
# Ptr writing
@test JSONBase.json(C_NULL) == "\"Ptr{Nothing} @0x0000000000000000\""
sizeof(Int) == 8 && @test JSONBase.json(C_NULL) == "\"Ptr{Nothing} @0x0000000000000000\""
# DataType writing
@test JSONBase.json(Float64) == "\"Float64\""
@test JSONBase.json(Union{Missing, Float64}) == "\"Union{Missing, Float64}\""
Expand Down

0 comments on commit d17a31f

Please sign in to comment.