From 9ed791fd30b23ef5b4537c5b41433201e3699752 Mon Sep 17 00:00:00 2001 From: Maksim Kita Date: Tue, 9 Mar 2021 01:33:16 +0300 Subject: [PATCH] Updated style check --- src/Common/PODArray.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Common/PODArray.h b/src/Common/PODArray.h index c1a2546302f..579d500e6df 100644 --- a/src/Common/PODArray.h +++ b/src/Common/PODArray.h @@ -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