From fd115374396c506b4286d0a4757aa3eda0a15ccc Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 17 Dec 2025 23:39:45 +0000 Subject: [PATCH 1/5] Initial plan From 5dd01deece5c59c1bacf47f693aea117062a583c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 17 Dec 2025 23:45:35 +0000 Subject: [PATCH 2/5] Make Pipeline::run() const for better API design Co-authored-by: koparasy <1258022+koparasy@users.noreply.github.com> --- src/AMSlib/wf/pipeline.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AMSlib/wf/pipeline.hpp b/src/AMSlib/wf/pipeline.hpp index bcdeb68a..e412f0f0 100644 --- a/src/AMSlib/wf/pipeline.hpp +++ b/src/AMSlib/wf/pipeline.hpp @@ -29,9 +29,9 @@ class Pipeline } /// Execute all actions in order; stops on first error. - AMSStatus run(EvalContext& Ctx) + AMSStatus run(EvalContext& Ctx) const { - for (auto& Act : Actions) { + for (const auto& Act : Actions) { if (auto St = Act->run(Ctx); !St) { return St; } From 421b55c75899b05f65ef68e6941a386657f5645f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 17 Dec 2025 23:46:19 +0000 Subject: [PATCH 3/5] Complete const-correctness changes Co-authored-by: koparasy <1258022+koparasy@users.noreply.github.com> --- _codeql_detected_source_root | 1 + 1 file changed, 1 insertion(+) create mode 120000 _codeql_detected_source_root diff --git a/_codeql_detected_source_root b/_codeql_detected_source_root new file mode 120000 index 00000000..945c9b46 --- /dev/null +++ b/_codeql_detected_source_root @@ -0,0 +1 @@ +. \ No newline at end of file From 24b7cf4340e5a26efa9087ca5e0dbca6f2a80e63 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 17 Dec 2025 23:46:44 +0000 Subject: [PATCH 4/5] Remove CodeQL artifact and update .gitignore Co-authored-by: koparasy <1258022+koparasy@users.noreply.github.com> --- .gitignore | 1 + _codeql_detected_source_root | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 120000 _codeql_detected_source_root diff --git a/.gitignore b/.gitignore index a046d1de..50270c79 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ Makefile.user **.DS_Store __pycache__ +_codeql_detected_source_root diff --git a/_codeql_detected_source_root b/_codeql_detected_source_root deleted file mode 120000 index 945c9b46..00000000 --- a/_codeql_detected_source_root +++ /dev/null @@ -1 +0,0 @@ -. \ No newline at end of file From 61cf3000f206b7817308cf8908cbb7e69e4f6778 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 17 Dec 2025 23:54:13 +0000 Subject: [PATCH 5/5] Revert .gitignore changes as requested Co-authored-by: koparasy <1258022+koparasy@users.noreply.github.com> --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 50270c79..a046d1de 100644 --- a/.gitignore +++ b/.gitignore @@ -14,4 +14,3 @@ Makefile.user **.DS_Store __pycache__ -_codeql_detected_source_root