mirror of https://github.com/davisking/dlib.git
Changed code to avoid compiler warning in visual studio.
This commit is contained in:
parent
5597d9cb20
commit
1fd8afd579
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue