Skip to content

Commit 47db160

Browse files
authored
Merge pull request #3 from JuliaDocs/fix-32bit
Allow to instantiate `InventoryItem` on 32bit system
2 parents 8e8d91e + c1474f9 commit 47db160

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/CI.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,15 @@ jobs:
2626
- title: 'Linux - Latest'
2727
os: ubuntu-latest
2828
version: '1'
29+
arch: x64
2930
- title: 'Windows - Latest'
3031
os: windows-latest
3132
version: '1'
33+
arch: x64
34+
- title: 'Linux - 32bit'
35+
os: ubuntu-latest
36+
version: '1'
37+
arch: x86
3238
steps:
3339
- uses: actions/checkout@v4
3440
- uses: julia-actions/setup-julia@v1

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DocInventories"
22
uuid = "43dc2714-ed3b-44b5-b226-857eda1aa7de"
33
authors = ["Michael Goerz <mail@michaelgoerz.net>"]
4-
version = "0.3.0"
4+
version = "0.3.0+dev"
55

66
[deps]
77
CodecZlib = "944b1d66-785c-5afd-91f1-9de20f533193"

src/inventory_item.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,15 +97,15 @@ struct InventoryItem
9797
name::String
9898
domain::String
9999
role::String
100-
priority::Int64
100+
priority::Int
101101
uri::String
102102
dispname::String
103103

104104
function InventoryItem(
105105
name::AbstractString,
106106
domain::AbstractString,
107107
role::AbstractString,
108-
priority::Int64,
108+
priority::Int,
109109
uri::AbstractString,
110110
dispname::AbstractString
111111
)

0 commit comments

Comments
 (0)