From a72d152a77191e28a19fa471c7a69aef6ad66eb4 Mon Sep 17 00:00:00 2001 From: jiaozeyu Date: Fri, 12 Sep 2025 15:34:19 +0800 Subject: [PATCH 1/2] [Bugfix] add missing include for uint32_t --- csrc/utils/common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/csrc/utils/common.h b/csrc/utils/common.h index 615c302f..78c44674 100644 --- a/csrc/utils/common.h +++ b/csrc/utils/common.h @@ -9,6 +9,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +#include #ifndef UTILS_COMMON_H #define UTILS_COMMON_H From 5d6d9d9ba8c1a5e892ecaa6c0e802810280e2013 Mon Sep 17 00:00:00 2001 From: raintBN-91 Date: Tue, 16 Sep 2025 18:15:30 +0800 Subject: [PATCH 2/2] Update common.h --- csrc/utils/common.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/csrc/utils/common.h b/csrc/utils/common.h index 78c44674..43c018f0 100644 --- a/csrc/utils/common.h +++ b/csrc/utils/common.h @@ -9,10 +9,11 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include #ifndef UTILS_COMMON_H #define UTILS_COMMON_H +#include + constexpr uint32_t BLK_SIZE_ALIN_FOR_INT64 = 4; constexpr uint32_t BLK_SIZE_ALIN_FOR_INT32 = 8; @@ -27,3 +28,4 @@ inline uint64_t alinInt32Count(uint64_t count) } #endif // UTILS_COMMON_H +