Skip to content

Commit 447cb7d

Browse files
xaowang96smohantty
authored andcommitted
replace unsigned int with uint32_t in Int()
Signed-off-by: wangxuedong <wangxuedong@xiaomi.com> Change-Id: I4390c12fcf3aefccfe20290436b0dad96877008c
1 parent d7cf0a5 commit 447cb7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vector/vglobal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ class vFlag {
139139

140140
using Int = typename std::conditional<
141141
std::is_unsigned<typename std::underlying_type<Enum>::type>::value,
142-
unsigned int, signed int>::type;
142+
uint32_t, signed int>::type;
143143

144144
using enum_type = Enum;
145145
// compiler-generated copy/move ctor/assignment operators are fine!

0 commit comments

Comments
 (0)