From 71ade764add5ced9179fa9f7af69448185fddc9c Mon Sep 17 00:00:00 2001 From: Ville Voutilainen Date: Mon, 26 Sep 2016 23:51:42 +0300 Subject: [PATCH] re PR libstdc++/77727 (Unwrapping std::optional constructor is not working for non-transferable object) PR libstdc++/77727 * include/std/optional (optional(const optional<_Up>&)): Default-initialize the base and use emplace. (optional(optional<_Up>&&)): Likewise. * testsuite/20_util/optional/cons/77727.cc: New. From-SVN: r240511 --- libstdc++-v3/ChangeLog | 8 +++ libstdc++-v3/include/std/optional | 20 ++++++-- .../testsuite/20_util/optional/cons/77727.cc | 51 +++++++++++++++++++ 3 files changed, 75 insertions(+), 4 deletions(-) create mode 100644 libstdc++-v3/testsuite/20_util/optional/cons/77727.cc diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 770e6941258..63d83530607 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,11 @@ +2016-09-26 Ville Voutilainen + + PR libstdc++/77727 + * include/std/optional (optional(const optional<_Up>&)): + Default-initialize the base and use emplace. + (optional(optional<_Up>&&)): Likewise. + * testsuite/20_util/optional/cons/77727.cc: New. + 2016-09-26 François Dumont * include/debug/safe_base.h diff --git a/libstdc++-v3/include/std/optional b/libstdc++-v3/include/std/optional index efb0eb61e9d..b14faf1ca31 100644 --- a/libstdc++-v3/include/std/optional +++ b/libstdc++-v3/include/std/optional @@ -502,7 +502,10 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION __not_<__converts_from_optional<_Tp, _Up>> >::value, bool> = true> constexpr optional(const optional<_Up>& __t) - : _Base(__t ? _Base(std::in_place, *__t) : _Base()) { } + { + if (__t) + emplace(*__t); + } template > >::value, bool> = false> explicit constexpr optional(const optional<_Up>& __t) - : _Base(__t ? _Base(std::in_place, *__t) : _Base()) { } + { + if (__t) + emplace(*__t); + } template > >::value, bool> = true> constexpr optional(optional<_Up>&& __t) - : _Base(__t ? _Base(std::in_place, std::move(*__t)) : _Base()) { } + { + if (__t) + emplace(std::move(*__t)); + } template > >::value, bool> = false> explicit constexpr optional(optional<_Up>&& __t) - : _Base(__t ? _Base(std::in_place, std::move(*__t)) : _Base()) { } + { + if (__t) + emplace(std::move(*__t)); + } template explicit constexpr optional(in_place_t, _Args&&... __args) diff --git a/libstdc++-v3/testsuite/20_util/optional/cons/77727.cc b/libstdc++-v3/testsuite/20_util/optional/cons/77727.cc new file mode 100644 index 00000000000..7a3b101beca --- /dev/null +++ b/libstdc++-v3/testsuite/20_util/optional/cons/77727.cc @@ -0,0 +1,51 @@ +// { dg-options "-std=gnu++17" } +// { dg-do run } + +// Copyright (C) 2016 Free Software Foundation, Inc. +// +// This file is part of the GNU ISO C++ Library. This library is free +// software; you can redistribute it and/or modify it under the +// terms of the GNU General Public License as published by the +// Free Software Foundation; either version 3, or (at your option) +// any later version. + +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a moved_to of the GNU General Public License along +// with this library; see the file COPYING3. If not see +// . + +#include +#include + + +struct NonTransferable +{ + int x; + NonTransferable(int x) : x(x) {} + NonTransferable(NonTransferable&&) = delete; + NonTransferable& operator=(NonTransferable&&) = delete; + operator int() {return x;} +}; + +int main() +{ + std::optional oi; + std::optional ot(std::move(oi)); + VERIFY(!ot); + + std::optional oi2; + std::optional ot2(oi2); + VERIFY(!ot); + + std::optional oi3{42}; + std::optional ot3(std::move(oi3)); + VERIFY(ot3 && *ot3 == 42); + + std::optional oi4{666}; + std::optional ot4(oi4); + VERIFY(ot4 && *ot4 == 666); +} -- 2.30.2