Quiet compiler warning signed vs unsigned

This commit is contained in:
Eric Frias 2014-04-10 14:27:20 -04:00
parent c63e598497
commit 1b16e15585

View file

@ -133,7 +133,7 @@ namespace fc { namespace raw {
mutable_variant_object mvo; mutable_variant_object mvo;
mvo.reserve(vs.value); 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::string key;
fc::variant value; fc::variant value;