You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the report. I will investigate. I acknowledge the divergence between std::optional and boost::optional. But in general the expectation on transitive detectable copiability is not valid:
static_assert(!std::is_copy_constructible<std::vector<NonCopyAble>>::value,
"vector of this is not copyable");
Hi.
I encountered issues while trying to use std::vector<boost::optional<std::tuple<NonCopyable, std::function<...>>>. THis failed to compile on msvc.
Looks like it boiled down to this repro: https://godbolt.org/g/cFNcUN
The text was updated successfully, but these errors were encountered: