Commit 1fd8afd5 authored by Davis King's avatar Davis King

Changed code to avoid compiler warning in visual studio.

parent 5597d9cb
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment