We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e432c0c commit f20937eCopy full SHA for f20937e
src/types.jl
@@ -500,7 +500,7 @@ struct BreakpointSignature <: AbstractBreakpoint
500
sig::Union{Nothing, Type}
501
line::Int # 0 is a sentinel for first statement
502
condition::Condition
503
- enabled::Ref{Bool}
+ enabled::Base.RefValue{Bool}
504
instances::Vector{BreakpointRef}
505
end
506
same_location(bp2::BreakpointSignature, bp::BreakpointSignature) =
@@ -539,7 +539,7 @@ struct BreakpointFileLocation <: AbstractBreakpoint
539
abspath::String
540
line::Int
541
542
543
544
545
same_location(bp2::BreakpointFileLocation, bp::BreakpointFileLocation) =
0 commit comments