last commit error

This commit is contained in:
2024-11-21 00:18:57 +03:00
parent 002f21fc9e
commit 4aa596b179
2 changed files with 2 additions and 2 deletions

View File

@@ -2461,7 +2461,7 @@ private:
inline size_t asize(size_t s) {
if (s == 0) return 0;
if (s <= _PIContainerConstants<T>::maxCountForPoT()) {
if (s < _PIContainerConstants<T>::maxCountForPoT()) {
if (piv_rsize * 2 >= s && piv_rsize < s) {
return piv_rsize * 2;
}