From 05dd1dd73ee15cb70c64a421bdfced4aa0e41924 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Thu, 16 Jul 2026 10:30:59 +0200 Subject: [PATCH 1/2] Fix C&P issue int test of bool-likes in optional This was likely an omission by copying `MyBool` --- test/optional_test_constructors.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/optional_test_constructors.cpp b/test/optional_test_constructors.cpp index e3483a69..60e6bb15 100644 --- a/test/optional_test_constructors.cpp +++ b/test/optional_test_constructors.cpp @@ -27,7 +27,7 @@ struct MyBool struct MyExplicitBool { bool b; - MyExplicitBool (bool b) : b(b) {} + explicit MyExplicitBool (bool b) : b(b) {} operator bool() const { return b; }; }; From dfb895fc187c3a87e0e6b4ae1a1ced8c546b73af Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Thu, 16 Jul 2026 13:00:19 +0200 Subject: [PATCH 2/2] Allow insecure Node.js version in CI workflow Temporary workaround to make CI pass --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bf415cb5..9640d766 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,7 @@ on: env: UBSAN_OPTIONS: print_stacktrace=1 + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true jobs: posix: