Compare commits

..

3 Commits

Author SHA1 Message Date
Andrzej Krzemienski f2212618a5 Merge branch 'Flamefire-patch-2' into develop 2026-07-17 00:19:12 +02:00
Alexander Grund dfb895fc18 Allow insecure Node.js version in CI workflow
Temporary workaround to make CI pass
2026-07-16 13:00:19 +02:00
Alexander Grund 05dd1dd73e Fix C&P issue int test of bool-likes in optional
This was likely an omission by copying `MyBool`
2026-07-16 10:53:02 +02:00
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -10,6 +10,7 @@ on:
env:
UBSAN_OPTIONS: print_stacktrace=1
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
jobs:
posix:
+1 -1
View File
@@ -11,7 +11,7 @@
[section:relnotes Release Notes]
[heading Boost Release 1.92]
[heading Boost Release 1.xx]
* Fixed regression in the copy-initialization of `optional<bool>`. This fixes [@https://github.com/boostorg/optional/issues/146 issue #146].
+1 -1
View File
@@ -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; };
};