From 5c032834c6afc0db3a89f0962af373293eb00c21 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Mon, 24 Nov 2025 18:01:24 -0500 Subject: [PATCH] xo-interpreter: handle define-expressions. --- include/xo/alloc/Object.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/xo/alloc/Object.hpp b/include/xo/alloc/Object.hpp index f16dd6ac..73a60edd 100644 --- a/include/xo/alloc/Object.hpp +++ b/include/xo/alloc/Object.hpp @@ -97,6 +97,8 @@ namespace xo { /** memory allocator for objects. Likely this will be a GC instance, * but simple arena also supported. + * + * Load-bearing for .assign_member() **/ static gc::IAlloc * mm;