Skip to content

Commit 86dc26b

Browse files
committed
Fix missing qualifier
1 parent bb5fa01 commit 86dc26b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/AbstractPPLDistributionsExt.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ function AbstractPPL.hasvalue(
176176
)
177177
# NamedTuples can't have such complicated hierarchies, so it's safe to
178178
# defer to the simpler `hasvalue(vals, vn)`.
179-
return hasvalue(vals, vn)
179+
return AbstractPPL.hasvalue(vals, vn)
180180
end
181181
function AbstractPPL.hasvalue(
182182
vals::AbstractDict,
@@ -272,7 +272,7 @@ function AbstractPPL.getvalue(
272272
)
273273
# NamedTuples can't have such complicated hierarchies, so it's safe to
274274
# defer to the simpler `getvalue(vals, vn)`.
275-
return getvalue(vals, vn)
275+
return AbstractPPL.getvalue(vals, vn)
276276
end
277277
function AbstractPPL.getvalue(
278278
vals::AbstractDict, vn::VarName, dist::Distributions.Distribution;

0 commit comments

Comments
 (0)