Skip to content

Commit 3da2fae

Browse files
committed
fix: correctly mark unstable
1 parent 0798f57 commit 3da2fae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Node.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ use the `.degree` field of a node to determine the number of children
203203
to return. Typically this is done within a `Base.Cartesian.@nif` statement
204204
for total type stability.
205205
"""
206-
@inline function get_children(node::AbstractNode{D}, n::Integer) where {D}
206+
@unstable @inline function get_children(node::AbstractNode{D}, n::Integer) where {D}
207207
return get_children(node, Val(n))
208208
end
209209
@inline function get_children(node::AbstractNode{D}, ::Val{n}) where {D,n}

0 commit comments

Comments
 (0)