fixed compiler error for strict compilers

This commit is contained in:
ZappoMan 2013-04-08 17:08:14 -07:00
parent 53cfd0ecdd
commit 7f1af81cf9

View file

@ -33,9 +33,9 @@ private:
double totalTime;
long int countSamples[COUNTETSTATS_SAMPLES_TO_KEEP] = {};
long int deltaSamples[COUNTETSTATS_SAMPLES_TO_KEEP] = {};
double timeSamples[COUNTETSTATS_SAMPLES_TO_KEEP] = {};
long int countSamples[COUNTETSTATS_SAMPLES_TO_KEEP];
long int deltaSamples[COUNTETSTATS_SAMPLES_TO_KEEP];
double timeSamples[COUNTETSTATS_SAMPLES_TO_KEEP];
int sampleAt;
int sampleCount;