From 97cd2cbf6466812480c8047958090fd32c96f7b1 Mon Sep 17 00:00:00 2001 From: Rune Date: Sun, 15 Mar 2026 16:32:06 +0100 Subject: [PATCH] fix breaking cpp2beef changes --- Setup/BeefSpace_Lock.toml | 2 +- Setup/src/Program.bf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Setup/BeefSpace_Lock.toml b/Setup/BeefSpace_Lock.toml index a56cab9..7e22164 100644 --- a/Setup/BeefSpace_Lock.toml +++ b/Setup/BeefSpace_Lock.toml @@ -8,4 +8,4 @@ Hash = "86db0167f15d08a63a91a19e46f983a5511bac1a" [Locks."Cpp2Beef.git".Git] URL = "https://git.unicon-gmbh.de/BeefBindings/Cpp2Beef.git" Tag = "" -Hash = "3590478b20da32b54f523780b5de819c27b95a47" +Hash = "69ed2da6254b9d76d0dd48cf20eb6174dde903e2" diff --git a/Setup/src/Program.bf b/Setup/src/Program.bf index 39ec4d0..069baa6 100644 --- a/Setup/src/Program.bf +++ b/Setup/src/Program.bf @@ -305,8 +305,8 @@ class Program RunCommand!("git -C .. submodule update"); char8*[?] clangArgs = .("--language=c", "-I../libexpat/expat/lib", "-DXMLCALL="); - { scope ExpatGenerator(clangArgs).Generate("../libexpat/expat/lib/expat.h", null); } - { scope ExpatWrapperGenerator(clangArgs).Generate("../libexpat/expat/lib/expat.h", null); } + { scope ExpatGenerator(clangArgs).Generate("../libexpat/expat/lib/expat.h"); } + { scope ExpatWrapperGenerator(clangArgs).Generate("../libexpat/expat/lib/expat.h"); } Directory.CreateDirectory("../expat_config"); RunCommand!("cmake -S ../libexpat/expat -B ../expat_config -GNinja");