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
The current implementation required ad least a move-constructor for
in-place construction.
This made it impossible to directly, create an optional of a type
without copy and move operators.
A workaround is using the variadic emplace function, but it requires to
construct the object in two steps.
std::optional does not require any copy or move operation for in-place
construction
0 commit comments