-
Notifications
You must be signed in to change notification settings - Fork 769
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[unique.ptr.single.ctor] Sloppy wording after application of LWG 2905 #1530
Comments
In LWG 2905 I pointed out that we could replace the see below stuff with the real signatures:
Then we could simply say:
|
Yes, that would fix it. In any event, p11 (the |
Yes, it's a curious piece of wording :-) It dates from the very early days of rvalue references and move semantics, so seems to be acting as a tutorial for how the constructors work. |
@zygoloid, how much of this are you comfortable with addressing editorially? |
Editorial meeting consensus: Use of the word "signature" is definitely wrong. Delete p11 editorially. Replace "signature" with something else editorially. Replacing the "see below" with the real declarations is fine. Use English "if D is a reference type, the second constructor is defined as deleted." |
LWG DR 2905 says that is_constructible_v<unique_ptr<P, D>, P, D const &> should be false when D is not copy constructible. This commit implements the changes from the DR and simplifies the signatures as per cplusplus/draft#1530 * include/bits/unique_ptr.h (__uniq_ptr_impl): Add assertions to check deleter type. (unique_ptr::unique_ptr(pointer, const deleter_type&)): Add copy constructible constraint. (unique_ptr::unique_ptr(pointer, deleter_type&&)): Disable for deleters of reference type and add move constructible constraint. (unique_ptr::unique_ptr(pointer, remove_reference_t<deleter_type>&&)): Disable for deleters of non-reference type. Define as deleted. (unique_ptr<T[], D>): Likewise. * testsuite/20_util/unique_ptr/assign/48635_neg.cc: Replace dg-error directives with unstable line numbers with dg-prune-output. * testsuite/20_util/unique_ptr/cons/cv_qual_neg.cc: Likewise. * testsuite/20_util/unique_ptr/cons/lwg2905.cc: New test. * testsuite/20_util/unique_ptr/specialized_algorithms/swap_cxx17.cc: Make deleter types invocable. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@264206 138bc75d-0d04-0410-961f-82ee72b054a4
LWG DR 2905 says that is_constructible_v<unique_ptr<P, D>, P, D const &> should be false when D is not copy constructible. This commit implements the changes from the DR and simplifies the signatures as per cplusplus/draft#1530 * include/bits/unique_ptr.h (__uniq_ptr_impl): Add assertions to check deleter type. (unique_ptr::unique_ptr(pointer, const deleter_type&)): Add copy constructible constraint. (unique_ptr::unique_ptr(pointer, deleter_type&&)): Disable for deleters of reference type and add move constructible constraint. (unique_ptr::unique_ptr(pointer, remove_reference_t<deleter_type>&&)): Disable for deleters of non-reference type. Define as deleted. (unique_ptr<T[], D>): Likewise. * testsuite/20_util/unique_ptr/assign/48635_neg.cc: Replace dg-error directives with unstable line numbers with dg-prune-output. * testsuite/20_util/unique_ptr/cons/cv_qual_neg.cc: Likewise. * testsuite/20_util/unique_ptr/cons/lwg2905.cc: New test. * testsuite/20_util/unique_ptr/specialized_algorithms/swap_cxx17.cc: Make deleter types invocable. From-SVN: r264206
After LWG 2905 (part of Kona 2017 LWG motion 20) is applied, we will have something along the lines of
The use of signature is incorrect, as whether a function is defined as deleted or not is not part of the signature. See [defns.signature.member].
The paragraph dealing with the case where
D
isconst A&
will also have the same problem.The text was updated successfully, but these errors were encountered: