Skip to content

Commit 8e1db8d

Browse files
committed
Replace uint with uint8_t in unittest
1 parent 64e1454 commit 8e1db8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ut/columns_ut.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ TEST(ColumnsCase, ReservedAndCapacity) {
930930
break; \
931931
}
932932

933-
for (uint rac_test_id = 0; rac_test_id < 14; ++rac_test_id) {
933+
for (uint8_t rac_test_id = 0; rac_test_id < 14; ++rac_test_id) {
934934
switch (rac_test_id) {
935935
RaC_TEST_CASE( 0, ColumnUInt8);
936936
RaC_TEST_CASE( 1, ColumnUInt16);
@@ -983,7 +983,7 @@ TEST(ColumnsCase, RawVector) {
983983
break; \
984984
}
985985

986-
for (uint rv_test_id = 0; rv_test_id < 14; ++rv_test_id) {
986+
for (uint8_t rv_test_id = 0; rv_test_id < 14; ++rv_test_id) {
987987
switch (rv_test_id) {
988988
RV_TEST_CASE( 0, ColumnUInt8);
989989
RV_TEST_CASE( 1, ColumnUInt16);

0 commit comments

Comments
 (0)