From e4adfa0e61bd8e64353f7a6681640804f7727d16 Mon Sep 17 00:00:00 2001 From: Hayodea Hekol Date: Tue, 17 Feb 2026 10:25:55 -0400 Subject: [PATCH] Main: move CRT cmdline obj into libspinscale --- libspinscale | 2 +- smocore/marionette/main.cpp | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/libspinscale b/libspinscale index 3f3ff12..18b632e 160000 --- a/libspinscale +++ b/libspinscale @@ -1 +1 @@ -Subproject commit 3f3ff1283f92615c028c4f36c6dfa050f5b68269 +Subproject commit 18b632e5bb2b53f670eb12115caa7453d7780893 diff --git a/smocore/marionette/main.cpp b/smocore/marionette/main.cpp index 0796ce2..c2f8b56 100644 --- a/smocore/marionette/main.cpp +++ b/smocore/marionette/main.cpp @@ -20,13 +20,6 @@ namespace mrntt { std::shared_ptr thread = std::make_shared(); } // namespace mrntt -CrtCommandLineArgs crtCommandLineArgs(0, nullptr, nullptr); - -void CrtCommandLineArgs::set(int argc, char *argv[], char *envp[]) -{ - crtCommandLineArgs = CrtCommandLineArgs(argc, argv, envp); -} - namespace mrntt { std::atomic exitCode; MarionetteComponent mrntt(std::static_pointer_cast(thread));