mirror of
https://github.com/overte-org/overte.git
synced 2025-08-16 16:52:27 +02:00
fixed compiler error for strict compilers
This commit is contained in:
parent
53cfd0ecdd
commit
7f1af81cf9
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue