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
Removing use of boost::variant and optional from stlab now that it has moved to C++17 (#531)
* Removing use of boost::variant and optional from stlab now that it has moved to C++17
* fixing one Windows error
* adding using type for clarity
* Update docs/tips/stop-using-out-arguments.md
---------
Co-authored-by: Bryn Aspestrand <[email protected]>
option( STLAB_USE_BOOST_CPP17_SHIMS "Use variant and optional from Boost instead of std. Useful for non-conforming compilers."${STLAB_DEFAULT_USE_BOOST_CPP17_SHIMS} )
description: If `T` is not `void`, it returns an initialized `optional` if the future has succeeded, otherwise an empty `optional<T>`. In case that an error occurred it rethrows the captured exception.
description: If `T` is void it returns `true` if the future succeeded, otherwise `false`. In case that an error occurred it rethrows the captured exception.
0 commit comments