Skip to content

Commit d738d7b

Browse files
committed
Fix scope issue
1 parent fdd6673 commit d738d7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Containers/macro.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,11 +317,11 @@ function container_code(
317317
names = if $keyword_indexing === missing
318318
$index_vars
319319
elseif $keyword_indexing === true
320-
_ForceEnableKeywordIndexing($index_vars)
320+
$_ForceEnableKeywordIndexing($index_vars)
321321
else
322322
nothing
323323
end
324-
Containers.container($f, $indices, $container_type, names)
324+
$container($f, $indices, $container_type, names)
325325
end
326326
end
327327

0 commit comments

Comments
 (0)