Skip to content

Commit 64b00cc

Browse files
committed
Fix type signatures for MachOLoadCmdRef{} usage
1 parent 64a1915 commit 64b00cc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/MachO/LoadCmds/DylibCmds.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,10 @@ Command.
121121
"""
122122
dylib_compatibilty(cmd::DylibCmd) = cmd.stub.compatibilty
123123

124-
@derefmethod dylib_name(cmd::MachOLoadCmdRef{T}) where {T <: DylibCmd}
125-
@derefmethod dylib_timestamp(cmd::MachOLoadCmdRef{T}) where {T <: DylibCmd}
126-
@derefmethod dylib_version(cmd::MachOLoadCmdRef{T}) where {T <: DylibCmd}
127-
@derefmethod dylib_compatibilty(cmd::MachOLoadCmdRef{T}) where {T <: DylibCmd}
124+
@derefmethod dylib_name(cmd::MachOLoadCmdRef{H, T}) where {H <: MachOHandle} where {T <: DylibCmd}
125+
@derefmethod dylib_timestamp(cmd::MachOLoadCmdRef{H, T}) where {H <: MachOHandle} where {T <: DylibCmd}
126+
@derefmethod dylib_version(cmd::MachOLoadCmdRef{H, T}) where {H <: MachOHandle} where {T <: DylibCmd}
127+
@derefmethod dylib_compatibilty(cmd::MachOLoadCmdRef{H, T}) where {H <: MachOHandle} where {T <: DylibCmd}
128128

129129

130130
"""

0 commit comments

Comments
 (0)