Quiet compiler warning signed vs unsigned
This commit is contained in:
parent
c63e598497
commit
1b16e15585
1 changed files with 1 additions and 1 deletions
|
|
@ -133,7 +133,7 @@ namespace fc { namespace raw {
|
|||
|
||||
mutable_variant_object mvo;
|
||||
mvo.reserve(vs.value);
|
||||
for( auto i = 0; i < vs.value; ++i )
|
||||
for( uint32_t i = 0; i < vs.value; ++i )
|
||||
{
|
||||
fc::string key;
|
||||
fc::variant value;
|
||||
|
|
|
|||
Loading…
Reference in a new issue