From e644ebd8b34aa3fac10695e1858651a389632f16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20G=C3=B6ttgens?= Date: Wed, 24 Apr 2024 19:04:34 +0200 Subject: [PATCH] Add `public` statement to `Base.GC` (#54213) --- base/gcutils.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/base/gcutils.jl b/base/gcutils.jl index 3b8c4cf4ede10..7aea7f222d7fd 100644 --- a/base/gcutils.jl +++ b/base/gcutils.jl @@ -109,6 +109,8 @@ Module with garbage collection utilities. """ module GC +public gc, enable, @preserve, safepoint, enable_logging, logging_enabled + # mirrored from julia.h const GC_AUTO = 0 const GC_FULL = 1