We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 775284d commit 79c3a81Copy full SHA for 79c3a81
src/varinfo.jl
@@ -1113,7 +1113,7 @@ isempty(vi::VarInfo) = _isempty(vi.metadata)
1113
_isempty(metadata::Metadata) = isempty(metadata.idcs)
1114
_isempty(vnv::VarNamedVector) = isempty(vnv)
1115
@generated function _isempty(metadata::NamedTuple{names}) where {names}
1116
- return Expr(:&&, (:(isempty(metadata.$f)) for f in names)...)
+ return Expr(:&&, (:(_isempty(metadata.$f)) for f in names)...)
1117
end
1118
1119
# X -> R for all variables associated with given sampler
0 commit comments