From d6cd540b464c85c07c105ef5a3ee549162185a3b Mon Sep 17 00:00:00 2001 From: fzhedu Date: Thu, 19 May 2022 22:07:10 +0800 Subject: [PATCH] formated Signed-off-by: fzhedu --- libs/libcommon/include/common/arithmeticOverflow.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,