Skip to content

Commit ac8dbfe

Browse files
authored
Fix warning on Julia 1.12 (#439)
1 parent 3f3fea8 commit ac8dbfe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name = "ComplexityMeasures"
22
uuid = "ab4b797d-85ee-42ba-b621-05d793b346a2"
33
authors = "Kristian Agasøster Haaga <kahaaga@gmail.com>, George Datseries <datseris.george@gmail.com>"
44
repo = "https://github.com/juliadynamics/ComplexityMeasures.jl.git"
5-
version = "3.8.2"
5+
version = "3.8.3"
66

77
[deps]
88
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"

src/core/outcome.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Base.show(io::IO, o::Outcome) = print(io, "Outcome($(o.num))")
1717

1818
# Some necessary methods for ranges to work.
1919
Outcome{T}(x::Outcome{T}) where T<:Integer = Outcome(x.num)
20-
Integer(x::Outcome{T}) where T<:Integer = x.num
20+
Base.Integer(x::Outcome{T}) where T<:Integer = x.num
2121

2222
import Base: -, +, *, rem, div, inv
2323
for f in [:(*), :(+), :(-), :rem, :div]

0 commit comments

Comments
 (0)