Skip to content

Commit

Permalink
fixed another dot_tilde_assume argument ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
torfjelde committed Feb 29, 2024
1 parent de3bb11 commit 2a4f83d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/context_implementations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ end
function dot_tilde_assume(::IsParent, context::AbstractContext, args...)
return dot_tilde_assume(childcontext(context), args...)
end
function dot_tilde_assume(rng, ::IsParent, context::AbstractContext, args...)
function dot_tilde_assume(::IsParent, rng, context::AbstractContext, args...)
return dot_tilde_assume(rng, childcontext(context), args...)
end

Expand Down

0 comments on commit 2a4f83d

Please sign in to comment.