From 39f2d1922b466c43cbb65071b7ab5cf93a35bb3a Mon Sep 17 00:00:00 2001 From: wangxuedong Date: Thu, 9 Dec 2021 16:51:34 +0800 Subject: [PATCH] replace unsigned int with uint32_t in Int() Signed-off-by: wangxuedong Change-Id: I4390c12fcf3aefccfe20290436b0dad96877008c Signed-off-by: jykeon --- src/vector/vglobal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vector/vglobal.h b/src/vector/vglobal.h index 8537b66..0aad7e8 100644 --- a/src/vector/vglobal.h +++ b/src/vector/vglobal.h @@ -139,7 +139,7 @@ public: using Int = typename std::conditional< std::is_unsigned::type>::value, - unsigned int, signed int>::type; + uint32_t, signed int>::type; using enum_type = Enum; // compiler-generated copy/move ctor/assignment operators are fine! -- 2.34.1