Fix warnings in backend factories

This commit is contained in:
Vinnie Falco
2013-08-31 13:57:55 -07:00
parent f5db655c47
commit 1ee8b3903c
2 changed files with 2 additions and 2 deletions

View File

@@ -116,7 +116,7 @@ public:
void storeBatch (NodeStore::Batch const& batch)
{
for (int i = 0; i < batch.size (); ++i)
for (std::size_t i = 0; i < batch.size (); ++i)
store (batch [i]);
}

View File

@@ -56,7 +56,7 @@ public:
void storeBatch (NodeStore::Batch const& batch)
{
for (int i = 0; i < batch.size (); ++i)
for (std::size_t i = 0; i < batch.size (); ++i)
store (batch [i]);
}