Skip to content

Commit a336f2d

Browse files
committed
Squashed 'packages/JuliaInterpreter/' changes from e432c0cf..ddb9493f
ddb9493f version 0.10.7 f20937ea Use the concrete Base.RefValue instead of abstract Ref in structs (#702) git-subtree-dir: packages/JuliaInterpreter git-subtree-split: ddb9493ffe5f91d58bd39a9c92e143ca70a950b8
1 parent 145bf9f commit a336f2d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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]

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)