diff options
author | pg <pg@yandex-team.com> | 2024-09-23 19:53:01 +0300 |
---|---|---|
committer | pg <pg@yandex-team.com> | 2024-09-23 20:05:15 +0300 |
commit | 64ffa9dea73a3fda2687e4626c8770ca5e3fea24 (patch) | |
tree | 62778267eca1182e5b2ef2d2c072312b509168e7 /contrib/libs | |
parent | d1ac45800ff24c19bf59707918ecfaf0b8324437 (diff) | |
download | ydb-64ffa9dea73a3fda2687e4626c8770ca5e3fea24.tar.gz |
Untitled commit
commit_hash:c82d1093fb7e721a5c6c42e3a24d7f94e8a1dd21
Diffstat (limited to 'contrib/libs')
-rw-r--r-- | contrib/libs/cxxsupp/libcxx/include/__iterator/reverse_iterator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/cxxsupp/libcxx/include/__iterator/reverse_iterator.h b/contrib/libs/cxxsupp/libcxx/include/__iterator/reverse_iterator.h index beb10f7f4f2..60969e17514 100644 --- a/contrib/libs/cxxsupp/libcxx/include/__iterator/reverse_iterator.h +++ b/contrib/libs/cxxsupp/libcxx/include/__iterator/reverse_iterator.h @@ -144,7 +144,7 @@ public: _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX17 reference operator*() const {_Iter __tmp = current; return *--__tmp;} -#if _LIBCPP_STD_VER >= 20 +#if (_LIBCPP_STD_VER >= 20) && !defined(__NVCC__) _LIBCPP_INLINE_VISIBILITY constexpr pointer operator->() const requires is_pointer_v<_Iter> || requires(const _Iter __i) { __i.operator->(); } |