1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

workaround for GCC4.8: remove non-trivial move ctor

This commit is contained in:
bolero-MURAKAMI 2013-07-16 18:42:33 +09:00
parent d1d273a84a
commit 49243e6c94
2 changed files with 11 additions and 3 deletions

View file

@ -98,11 +98,15 @@ namespace sprout {
: init(v.init)
, val(v.is_initialized() ? holder_type(*v) : holder_type())
{}
#if defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ == 8 && __GNUC_PATCHLEVEL__ <= 1))
SPROUT_CONSTEXPR optional(optional&&) = default;
#else
SPROUT_CONSTEXPR optional(optional&& v)
SPROUT_NOEXCEPT_EXPR(std::is_nothrow_move_constructible<T>::value)
: init(v.init)
, val(v.is_initialized() ? holder_type(sprout::move(get(v))) : holder_type())
{}
#endif
SPROUT_CONSTEXPR optional(T const& v)
: init(true)
, val(v)