diff --git a/libs/libcommon/include/common/arithmeticOverflow.h b/libs/libcommon/include/common/arithmeticOverflow.h index ffed12d29ca..9de24c936cb 100644 --- a/libs/libcommon/include/common/arithmeticOverflow.h +++ b/libs/libcommon/include/common/arithmeticOverflow.h @@ -113,7 +113,7 @@ inline bool mulOverflow(__int128 x, __int128 y, __int128 & res) if (!x || !y) return false; - return res/x != y; /// whether overflow int128 + return res / x != y; /// whether overflow int128 } /// Int256 doesn't use the complement representation to express negative values, but uses an extra bit to express the sign flag,