diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-08-05 14:45:45 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-08-05 15:24:42 +0300 |
commit | 636037ad08e5e0ea28bb4f7eaa1d8bc414c3a038 (patch) | |
tree | 4077d9153ffc2a6b503ed885b076858b2a285624 | |
parent | acf04c75cb52f804ce76b16c356611268be3daf3 (diff) | |
download | ydb-636037ad08e5e0ea28bb4f7eaa1d8bc414c3a038.tar.gz |
Intermediate changes
-rw-r--r-- | contrib/libs/cxxsupp/libcxxmsvc/include/bitset | 2 | ||||
-rw-r--r-- | contrib/python/certifi/py2/ya.make | 2 | ||||
-rw-r--r-- | contrib/python/certifi/py3/ya.make | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/contrib/libs/cxxsupp/libcxxmsvc/include/bitset b/contrib/libs/cxxsupp/libcxxmsvc/include/bitset index d5c42991d9..c85a280fdf 100644 --- a/contrib/libs/cxxsupp/libcxxmsvc/include/bitset +++ b/contrib/libs/cxxsupp/libcxxmsvc/include/bitset @@ -387,7 +387,7 @@ __bitset<_N_words, _Size>::to_ullong(true_type, true_type) const { unsigned long long __r = __first_[0]; for (size_t __i = 1; __i < sizeof(unsigned long long) / sizeof(__storage_type); ++__i) - __r |= static_cast<unsigned long long>(__first_[__i]) << (sizeof(__storage_type) * CHAR_BIT); + __r |= static_cast<unsigned long long>(__first_[__i]) << (sizeof(__storage_type) * CHAR_BIT * __i); return __r; } diff --git a/contrib/python/certifi/py2/ya.make b/contrib/python/certifi/py2/ya.make index 274da44efc..27aa0018f4 100644 --- a/contrib/python/certifi/py2/ya.make +++ b/contrib/python/certifi/py2/ya.make @@ -2,6 +2,8 @@ PY2_LIBRARY() LICENSE(Service-Py23-Proxy) +VERSION(Service-no-external-sources) + PEERDIR( library/python/certifi ) diff --git a/contrib/python/certifi/py3/ya.make b/contrib/python/certifi/py3/ya.make index fa3aa2c9d0..e841bd82d5 100644 --- a/contrib/python/certifi/py3/ya.make +++ b/contrib/python/certifi/py3/ya.make @@ -2,6 +2,8 @@ PY3_LIBRARY() LICENSE(Service-Py23-Proxy) +VERSION(Service-no-external-sources) + PEERDIR( library/python/certifi ) |