Skip to content

Commit

Permalink
Merge pull request #3 from JuliaDocs/fix-32bit
Browse files Browse the repository at this point in the history
Allow to instantiate `InventoryItem` on 32bit system
  • Loading branch information
goerz authored Jan 28, 2024
2 parents 8e8d91e + c1474f9 commit 47db160
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,15 @@ jobs:
- title: 'Linux - Latest'
os: ubuntu-latest
version: '1'
arch: x64
- title: 'Windows - Latest'
os: windows-latest
version: '1'
arch: x64
- title: 'Linux - 32bit'
os: ubuntu-latest
version: '1'
arch: x86
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "DocInventories"
uuid = "43dc2714-ed3b-44b5-b226-857eda1aa7de"
authors = ["Michael Goerz <[email protected]>"]
version = "0.3.0"
version = "0.3.0+dev"

[deps]
CodecZlib = "944b1d66-785c-5afd-91f1-9de20f533193"
Expand Down
4 changes: 2 additions & 2 deletions src/inventory_item.jl
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,15 @@ struct InventoryItem
name::String
domain::String
role::String
priority::Int64
priority::Int
uri::String
dispname::String

function InventoryItem(
name::AbstractString,
domain::AbstractString,
role::AbstractString,
priority::Int64,
priority::Int,
uri::AbstractString,
dispname::AbstractString
)
Expand Down

0 comments on commit 47db160

Please sign in to comment.