Fix gcc compile warnings.

This commit is contained in:
Jon Siwek 2015-02-10 16:14:49 -06:00
parent 6d868d83be
commit 07cba950b8
4 changed files with 11 additions and 9 deletions

View file

@ -94,7 +94,7 @@ void EventHandler::Call(val_list* vl, bool no_remote)
msg.emplace_back(Name());
bool valid_args = true;
for ( auto i = 0u; i < vl->length(); ++i )
for ( auto i = 0; i < vl->length(); ++i )
{
auto opt_data = comm::val_to_data((*vl)[i]);