mirror of
https://github.com/boostorg/optional.git
synced 2026-07-23 14:03:48 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f2212618a5 | |||
| dfb895fc18 | |||
| 05dd1dd73e |
@@ -10,6 +10,7 @@ on:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
UBSAN_OPTIONS: print_stacktrace=1
|
UBSAN_OPTIONS: print_stacktrace=1
|
||||||
|
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
posix:
|
posix:
|
||||||
|
|||||||
+1
-1
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
[section:relnotes Release Notes]
|
[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].
|
* Fixed regression in the copy-initialization of `optional<bool>`. This fixes [@https://github.com/boostorg/optional/issues/146 issue #146].
|
||||||
|
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ struct MyBool
|
|||||||
struct MyExplicitBool
|
struct MyExplicitBool
|
||||||
{
|
{
|
||||||
bool b;
|
bool b;
|
||||||
MyExplicitBool (bool b) : b(b) {}
|
explicit MyExplicitBool (bool b) : b(b) {}
|
||||||
operator bool() const { return b; };
|
operator bool() const { return b; };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user