Updated style check

This commit is contained in:
Maksim Kita 2021-03-09 01:33:16 +03:00
parent 642c45d769
commit 9ed791fd30

View File

@ -174,7 +174,7 @@ protected:
* It is not safe to use end == end_of_storage here because left_padding
* is not always multiple of ELEMENT_SIZE.
*/
return c_end + ELEMENT_SIZE >= c_end_of_storage;
return (c_end + ELEMENT_SIZE) >= c_end_of_storage;
}
template <typename ... TAllocatorParams>