Skip to content

Commit 99bb6e4

Browse files
authored
Update DFGVariable.jl
1 parent 2fda4d9 commit 99bb6e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/entities/DFGVariable.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ mutable struct VariableNodeData{T<:InferenceVariable}
3232
dontmargin::Bool
3333
solveInProgress::Int
3434
solvedCount::Int
35-
event::Condition #This object is NOT thread-safe. See Threads.Condition for a thread-safe version.
35+
event::Threads.Condition #This object is NOT thread-safe. See Threads.Condition for a thread-safe version. julia 1.2
3636
VariableNodeData{T}() where {T <:InferenceVariable} =
3737
new{T}(zeros(1,1), zeros(1,1), Symbol[], Int[], 0, false, :NOTHING, Symbol[], T(), false, 0.0, false, false, 0, 0, Condition())
3838
VariableNodeData{T}(val::Array{Float64,2},

0 commit comments

Comments
 (0)