aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/typeck2.c
diff options
context:
space:
mode:
authorMarek Polacek <polacek@redhat.com>2020-05-07 11:14:51 -0400
committerMarek Polacek <polacek@redhat.com>2020-05-07 13:41:33 -0400
commit0ca22d027eccb55215bb553b66fb10637344e2e6 (patch)
treeacb943efac6d5545437e32535fd309de96a75fb8 /gcc/cp/typeck2.c
parentb9250b3cb91b667cd67943e0fac94bf39ac089a8 (diff)
downloadgcc-0ca22d027eccb55215bb553b66fb10637344e2e6.zip
gcc-0ca22d027eccb55215bb553b66fb10637344e2e6.tar.gz
gcc-0ca22d027eccb55215bb553b66fb10637344e2e6.tar.bz2
c++: Implement P1957R2, T* to bool should be considered narrowing.
This was approved in the Prague 2020 WG21 meeting so let's adjust the comment. Since it's supposed to be a DR I think we should no longer limit it to C++20. P1957R2 * typeck2.c (check_narrowing): Consider T* to bool narrowing in C++11 and up. * g++.dg/cpp0x/initlist92.C: Don't expect an error in C++20 only.
Diffstat (limited to 'gcc/cp/typeck2.c')
-rw-r--r--gcc/cp/typeck2.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/cp/typeck2.c b/gcc/cp/typeck2.c
index 9e5d145..acf4414 100644
--- a/gcc/cp/typeck2.c
+++ b/gcc/cp/typeck2.c
@@ -1040,9 +1040,10 @@ check_narrowing (tree type, tree init, tsubst_flags_t complain,
}
else if (TREE_CODE (type) == BOOLEAN_TYPE
&& (TYPE_PTR_P (ftype) || TYPE_PTRMEM_P (ftype)))
- /* This hasn't actually made it into C++20 yet, but let's add it now to get
- an idea of the impact. */
- ok = (cxx_dialect < cxx2a);
+ /* C++20 P1957R2: converting from a pointer type or a pointer-to-member
+ type to bool should be considered narrowing. This is a DR so is not
+ limited to C++20 only. */
+ ok = false;
bool almost_ok = ok;
if (!ok && !CONSTANT_CLASS_P (init) && (complain & tf_warning_or_error))