last commit error
This commit is contained in:
@@ -2578,7 +2578,7 @@ private:
|
||||
inline size_t asize(ssize_t ss) {
|
||||
if (ss <= 0) return 0;
|
||||
size_t s = ss;
|
||||
if (s <= _PIContainerConstants<T>::maxCountForPoT()) {
|
||||
if (s < _PIContainerConstants<T>::maxCountForPoT()) {
|
||||
if (pid_rsize * 2 >= s && pid_rsize < s) {
|
||||
return pid_rsize * 2;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user