mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 10:19:01 +08:00
24e8be5fcf
* [boost] update to 1.73 * [ompl] remove dependency to boost-disjoint-sets * [libtorrent] include fixes from RC_1_2 branch * [liblas] fix boost headers * [freeopcua] fix std headers * [pcl] fix build with Boost 1.73.0 * [hpx] fix build with Boost 1.73.0 * [libmysql] fix conflict with C++20 header <version> * [boost-modular-build-helper] move port-specific b2 options to the file `<port_dir>/b2-options.cmake` [boost-python] support Python2 (fixes #3495) * [boost-python] remove Python executable from user-config * [libtorrent] update version after merge * [libtorrent] add boost-variant dependency
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
|