Skip to content

Commit 3344d79

Browse files
committed
1 parent b458e6c commit 3344d79

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "MeasureBase"
22
uuid = "fa1605e6-acd5-459c-a1e6-7e635759db14"
33
authors = ["Chad Scherrer <[email protected]> and contributors"]
4-
version = "0.4.5"
4+
version = "0.4.6"
55

66
[deps]
77
ConcreteStructs = "2569d6c7-a4a2-43d3-a901-331e8e4be471"

src/utils.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ showparams(io::IO, nt::NamedTuple) = print(io, nt)
55

66
@inline function fix(f, x)
77
y = f(x)
8-
while x ̸ y
8+
# Workaround bug https://github.com/JuliaLang/julia/issues/42615
9+
while x !== y
910
(x,y) = (y, f(y))
1011
end
1112

0 commit comments

Comments
 (0)