From d096523af095f657b93ee66934f8cafe54abf228 Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Thu, 22 Feb 2024 15:07:51 +0100 Subject: [PATCH] rusticl/kernel: make builds private Part-of: --- src/gallium/frontends/rusticl/core/kernel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/frontends/rusticl/core/kernel.rs b/src/gallium/frontends/rusticl/core/kernel.rs index f6b086945c4..5f74974b97b 100644 --- a/src/gallium/frontends/rusticl/core/kernel.rs +++ b/src/gallium/frontends/rusticl/core/kernel.rs @@ -301,7 +301,7 @@ pub struct Kernel { pub prog: Arc, pub name: String, values: Mutex>>, - pub builds: HashMap<&'static Device, Arc>, + builds: HashMap<&'static Device, Arc>, pub kernel_info: KernelInfo, }