Skip to content

Commit

Permalink
Update construct.jl fix omission
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreySarnoff committed Apr 12, 2024
1 parent 8391532 commit da6159d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/construct.jl
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ for (S,I) in (
@inline Base.Signed(x::$S) = reinterpret($I, x)
@inline SafeSigned(x::$S) = reinterpret($I, x)
@inline Base.Unsigned(::Type{$S}) = $I
@inline Base.Unsigned(x::S) = reinterpret($I, x)
@inline Base.Unsigned(x::$S) = reinterpret($I, x)
@inline SafeUnsigned(x::$I) = reinterpret($S, x)
end
end
Expand Down

0 comments on commit da6159d

Please sign in to comment.