diff options
| author | Andrey Khalyavin <[email protected]> | 2022-04-21 13:17:27 +0300 | 
|---|---|---|
| committer | Andrey Khalyavin <[email protected]> | 2022-04-21 13:17:27 +0300 | 
| commit | ddddb65b4f1f643c2d11077c6af35df1d6ab1656 (patch) | |
| tree | c66d94470f9e2f5840a36474a656755c0af4db20 /contrib/libs/cxxsupp/libcxx/include/experimental | |
| parent | f818c45c008cf20b6ac46f7c5f9a0cd5095ccca3 (diff) | |
Update libc++ to 429a717e (20 Jan 2022).
Notable changes:
* use _LIBCPP_DEBUG_ASSERT in unordered_map and vector headers
* use reserved identifiers for template parameters
* fix category of fs::path::iterator
* introduce __debug_db_insert_i() for debug checks to support compile-time evaluation
* add specializations of basic_common_reference and common_type for tuple
* fix std::lognormal_distribution::param_type
* add _LIBCPP_HIDE_FROM_ABI to in_in_result conversion operators
* replace _LIBCPP_INLINE_VISIBILITY with _LIBCPP_HIDE_FROM_ABI in move_iterator.h
* fix __simple_view concept in std::ranges
* add some ASCII/EBCDIC support for z/OS
ref:b0e68cbe142a3f06a8804f247119b5eb0a455a39
Diffstat (limited to 'contrib/libs/cxxsupp/libcxx/include/experimental')
| -rw-r--r-- | contrib/libs/cxxsupp/libcxx/include/experimental/simd | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/libs/cxxsupp/libcxx/include/experimental/simd b/contrib/libs/cxxsupp/libcxx/include/experimental/simd index af7e66eb8b3..475155512d7 100644 --- a/contrib/libs/cxxsupp/libcxx/include/experimental/simd +++ b/contrib/libs/cxxsupp/libcxx/include/experimental/simd @@ -689,7 +689,7 @@ class __simd_storage<_Tp, __simd_abi<_StorageKind::_Array, __num_element>> {    friend struct simd_mask;  public: -  _Tp __get(size_t __index) const noexcept { return __storage_[__index]; }; +  _Tp __get(size_t __index) const noexcept { return __storage_[__index]; }    void __set(size_t __index, _Tp __val) noexcept {      __storage_[__index] = __val;    } @@ -706,7 +706,7 @@ class __simd_storage<_Tp, __simd_abi<_StorageKind::_Scalar, 1>> {    friend struct simd_mask;  public: -  _Tp __get(size_t __index) const noexcept { return (&__storage_)[__index]; }; +  _Tp __get(size_t __index) const noexcept { return (&__storage_)[__index]; }    void __set(size_t __index, _Tp __val) noexcept {      (&__storage_)[__index] = __val;    } @@ -770,7 +770,7 @@ struct __vec_ext_traits {    _LIBCPP_SPECIALIZE_VEC_EXT(_TYPE, 29);                                       \    _LIBCPP_SPECIALIZE_VEC_EXT(_TYPE, 30);                                       \    _LIBCPP_SPECIALIZE_VEC_EXT(_TYPE, 31);                                       \ -  _LIBCPP_SPECIALIZE_VEC_EXT(_TYPE, 32); +  _LIBCPP_SPECIALIZE_VEC_EXT(_TYPE, 32)  _LIBCPP_SPECIALIZE_VEC_EXT_32(char);  _LIBCPP_SPECIALIZE_VEC_EXT_32(char16_t); @@ -808,7 +808,7 @@ class __simd_storage<_Tp, __simd_abi<_StorageKind::_VecExt, __num_element>> {    friend struct simd_mask;  public: -  _Tp __get(size_t __index) const noexcept { return __storage_[__index]; }; +  _Tp __get(size_t __index) const noexcept { return __storage_[__index]; }    void __set(size_t __index, _Tp __val) noexcept {      __storage_[__index] = __val;    }  | 
