Fix a clang warning

This commit is contained in:
James Turner 2015-04-11 21:58:23 +01:00
parent 686f095f1e
commit 2c6f9de020

View File

@ -116,7 +116,7 @@ void SampleHistogram::reset ()
this->SampleStatistic::reset ();
if (howManyBuckets > 0)
{
for (register int i = 0; i < howManyBuckets; i++)
for (int i = 0; i < howManyBuckets; i++)
{
bucketCount[i] = 0;
}