Merge pull request #872 from gongminmin/FixWarning

Fix the signed to unsigned conversion warning
This commit is contained in:
Hans-Kristian Arntzen 2019-02-22 10:07:51 +01:00 committed by GitHub
commit 77bc102c6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1382,7 +1382,7 @@ struct Meta
{
uint32_t packed_type = 0;
bool packed = false;
uint32_t ib_member_index = -1;
uint32_t ib_member_index = static_cast<uint32_t>(-1);
uint32_t ib_orig_id = 0;
} extended;
};