This page is a snapshot from the LWG issues list, see the Library Active Issues List for more information and the meaning of C++23 status.
basic_string_view
not trivially move constructibleSection: 27.3.3.2 [string.view.cons] Status: C++23 Submitter: Jiang An, Casey Carter Opened: 2021-08-16 Last modified: 2023-11-22
Priority: Not Prioritized
View all other issues in [string.view.cons].
View all issues with C++23 status.
Discussion:
Jiang An:
The issue is found in this Microsoft STL pull request.
I think an additional constraint should be added to 27.3.3.2 [string.view.cons]/11 (a similar constraint is already present forreference_wrapper
):
(11.?) —
is_same_v<remove_cvref_t<R>, basic_string_view>
isfalse
.
Casey Carter:
P1989R2 "Range constructor for std::string_view
2: Constrain Harder"
added a converting constructor to basic_string_view
that accepts (by forwarding reference) any sized
contiguous range with a compatible element type. This constructor unfortunately intercepts attempts at move
construction which previously would have resulted in a call to the copy constructor. (I suspect the authors of
P1989 were under the mistaken impression that basic_string_view
had a defaulted move constructor, which
would sidestep this issue by being chosen by overload resolution via the "non-template vs. template" tiebreaker.)
basic_string_view
, but it would be awkward to add text to specify that these moves always leave the
source intact. Presumably this is why the move operations were omitted in the first place. We therefore recommend
constraining the conversion constructor template to reject arguments whose decayed type is basic_string_view
(which we should probably do for all conversion constructor templates in the Standard Library).
Implementation experience: MSVC STL is in the process of implementing this fix. Per Jonathan Wakely, libstdc++ has a
similar constraint.
[2021-09-20; Reflector poll]
Set status to Tentatively Ready after nine votes in favour during reflector poll.
[2021-10-14 Approved at October 2021 virtual plenary. Status changed: Voting → WP.]
Proposed resolution:
This wording is relative to N4892.
Modify 27.3.3.2 [string.view.cons] as indicated:
template<class R> constexpr basic_string_view(R&& r);-10- Let
-11- Constraints:d
be an lvalue of typeremove_cvref_t<R>
.
(11.?) —
remove_cvref_t<R>
is not the same type asbasic_string_view
,(11.1) —
R
modelsranges::contiguous_range
andranges::sized_range
,(11.2) —
is_same_v<ranges::range_value_t<R>, charT>
istrue
,[…]