Skip to content

Commit 558323d

Browse files
committed
Merge commit 'a336f2dade106e6bc9b4fd5382fdb20c457f486c'
2 parents 7ce6159 + a336f2d commit 558323d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/JuliaInterpreter/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "JuliaInterpreter"
22
uuid = "aa1ae85d-cabe-5617-a682-6adf51b2e16a"
3-
version = "0.10.6"
3+
version = "0.10.7"
44
authors = ["Tim Holy <[email protected]>, Kristoffer Carlsson <[email protected]>, Shuhei Kadowaki <[email protected]> and contributors"]
55

66
[deps]

packages/JuliaInterpreter/src/types.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ struct BreakpointSignature <: AbstractBreakpoint
500500
sig::Union{Nothing, Type}
501501
line::Int # 0 is a sentinel for first statement
502502
condition::Condition
503-
enabled::Ref{Bool}
503+
enabled::Base.RefValue{Bool}
504504
instances::Vector{BreakpointRef}
505505
end
506506
same_location(bp2::BreakpointSignature, bp::BreakpointSignature) =
@@ -539,7 +539,7 @@ struct BreakpointFileLocation <: AbstractBreakpoint
539539
abspath::String
540540
line::Int
541541
condition::Condition
542-
enabled::Ref{Bool}
542+
enabled::Base.RefValue{Bool}
543543
instances::Vector{BreakpointRef}
544544
end
545545
same_location(bp2::BreakpointFileLocation, bp::BreakpointFileLocation) =

0 commit comments

Comments
 (0)