mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-20 01:37:50 +08:00
12 lines
663 B
Diff
12 lines
663 B
Diff
|
--- a/include/boost/outcome/experimental/status-code/status_code_ptr.hpp 2020-04-28 09:23:14.792565200 +0100
|
||
|
+++ b/include/boost/outcome/experimental/status-code/status_code_ptr.hpp 2020-04-28 09:24:34.311741000 +0100
|
||
|
@@ -103,7 +103,7 @@
|
||
|
#endif
|
||
|
virtual void _do_erased_copy(status_code<void> &dst, const status_code<void> &src, size_t /*unused*/) const override // NOLINT
|
||
|
{
|
||
|
- assert(dst.domain() == *this);
|
||
|
+ // Note that dst will not have its domain set
|
||
|
assert(src.domain() == *this);
|
||
|
auto &d = static_cast<_mycode &>(dst); // NOLINT
|
||
|
const auto &_s = static_cast<const _mycode &>(src); // NOLINT
|