From af96e82c21196789265e78f248c40d7e05f757bb Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Thu, 26 Mar 2026 11:30:16 -0400 Subject: [PATCH] xo-gc: generation -> Generation + bugfix idle test --- utest/SchematikaParser.test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utest/SchematikaParser.test.cpp b/utest/SchematikaParser.test.cpp index 57436c70..0748a1a7 100644 --- a/utest/SchematikaParser.test.cpp +++ b/utest/SchematikaParser.test.cpp @@ -51,7 +51,7 @@ namespace xo { using xo::mm::AGCObject; using xo::mm::DArena; using xo::mm::DX1Collector; - using xo::mm::generation; + using xo::mm::Generation; using xo::mm::X1CollectorConfig; using xo::mm::CollectorTypeRegistry; using xo::mm::MemorySizeInfo; @@ -241,7 +241,7 @@ namespace xo { if (fixture->gc_flag_) { REQUIRE(expr_gc); - expr_gc.request_gc(generation(2)); + expr_gc.request_gc(Generation(2)); } } }