aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorPatrick Palka <ppalka@redhat.com>2020-09-21 20:53:17 -0400
committerPatrick Palka <ppalka@redhat.com>2020-09-21 23:21:34 -0400
commit37edf28c24b7bd198c27d266af9aefad417635fd (patch)
treec147da811dc76f898741530ace441b2084670680 /gcc
parent813ad9c4dd5a779f12ad2abf710c6e75a3117ef0 (diff)
downloadgcc-37edf28c24b7bd198c27d266af9aefad417635fd.zip
gcc-37edf28c24b7bd198c27d266af9aefad417635fd.tar.gz
gcc-37edf28c24b7bd198c27d266af9aefad417635fd.tar.bz2
libstdc++: Remove overzealous static_asserts from std::span
For a span with statically empty extent, we currently model the preconditions of front(), back(), and operator[] as if they are mandates, by using a static_assert to verify that extent != 0. This causes us to reject valid programs that would instantiate these member functions and at runtime never call them. Since they are already followed by more general runtime asserts, this patch just removes these static_asserts altogether, libstdc++-v3/ChangeLog: * include/std/span (span::front): Remove static_assert. (span::back): Likewise. (span::operator[]): Likewise. * testsuite/23_containers/span/back_neg.cc: Rewrite to verify that we check the preconditions of back() only when it's called. * testsuite/23_containers/span/front_neg.cc: Likewise for front(). * testsuite/23_containers/span/index_op_neg.cc: Likewise for operator[].
Diffstat (limited to 'gcc')
0 files changed, 0 insertions, 0 deletions