aboutsummaryrefslogtreecommitdiff
path: root/libcxx
diff options
context:
space:
mode:
authorNikolas Klauser <nikolasklauser@berlin.de>2024-03-06 16:56:18 +0100
committerNikolas Klauser <nikolasklauser@berlin.de>2024-03-06 16:56:44 +0100
commit8e4887ff6de135680512f21fb41e949f73cbf262 (patch)
tree0f1accf82bbf60bd1b90e552b205b743e957d0de /libcxx
parent67c6ad6f30e35c7670bce9bca902caa4b1c8c0e8 (diff)
downloadllvm-8e4887ff6de135680512f21fb41e949f73cbf262.zip
llvm-8e4887ff6de135680512f21fb41e949f73cbf262.tar.gz
llvm-8e4887ff6de135680512f21fb41e949f73cbf262.tar.bz2
[libc++][NFC] Remove redundant preprocessor directive
Diffstat (limited to 'libcxx')
-rw-r--r--libcxx/include/span2
1 files changed, 0 insertions, 2 deletions
diff --git a/libcxx/include/span b/libcxx/include/span
index 9efaac5..cfeef35 100644
--- a/libcxx/include/span
+++ b/libcxx/include/span
@@ -564,10 +564,8 @@ _LIBCPP_HIDE_FROM_ABI auto as_writable_bytes(span<_Tp, _Extent> __s) noexcept {
return __s.__as_writable_bytes();
}
-# if _LIBCPP_STD_VER >= 20
template <contiguous_iterator _It, class _EndOrSize>
span(_It, _EndOrSize) -> span<remove_reference_t<iter_reference_t<_It>>>;
-# endif // _LIBCPP_STD_VER >= 20
template <class _Tp, size_t _Sz>
span(_Tp (&)[_Sz]) -> span<_Tp, _Sz>;