Changed code to avoid compiler warning in visual studio.

This commit is contained in:
Davis King 2013-05-26 15:02:29 -04:00
parent 5597d9cb20
commit 1fd8afd579
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ public:
unsigned long position
) const
{
for (long i = 0; i < x[position].size(); ++i)
for (unsigned long i = 0; i < x[position].size(); ++i)
{
set_feature(x[position][i].first, x[position][i].second);
}