Compare commits

..

6 Commits

Author SHA1 Message Date
Andrzej Krzemienski c0648f5f2d update release notes 2026-07-16 01:06:32 +02:00
Andrzej Krzemienski ca44adf389 Merge branch 'develop' 2026-07-16 00:59:50 +02:00
Andrzej Krzemienski 8bc4a16933 Merge branch 'develop' 2026-02-27 14:04:53 +01:00
Andrzej Krzemienski aaabe89a69 Merge branch 'develop' 2026-02-20 16:16:26 +01:00
Andrzej Krzemienski d46b9c3f77 Merge branch 'develop' 2026-02-17 16:31:45 +01:00
Andrzej Krzemienski 881bf8da26 Merge branch 'develop' 2026-01-31 22:49:43 +01:00
3 changed files with 2 additions and 3 deletions
-1
View File
@@ -10,7 +10,6 @@ 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.xx]
[heading Boost Release 1.92]
* 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;
explicit MyExplicitBool (bool b) : b(b) {}
MyExplicitBool (bool b) : b(b) {}
operator bool() const { return b; };
};