mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 16:36:54 +02:00
added typename keyword in MovingMinMaxAvg.h
This commit is contained in:
parent
763cc26fa9
commit
35e4b253c2
1 changed files with 2 additions and 2 deletions
|
@ -101,8 +101,8 @@ public:
|
||||||
_existingSamplesInCurrentInterval = 0;
|
_existingSamplesInCurrentInterval = 0;
|
||||||
|
|
||||||
// update the window's stats by combining the intervals' stats
|
// update the window's stats by combining the intervals' stats
|
||||||
RingBufferHistory<Stats>::Iterator i = _intervalStats.begin();
|
typename RingBufferHistory<Stats>::Iterator i = _intervalStats.begin();
|
||||||
RingBufferHistory<Stats>::Iterator end = _intervalStats.end();
|
typename RingBufferHistory<Stats>::Iterator end = _intervalStats.end();
|
||||||
_windowStats = Stats();
|
_windowStats = Stats();
|
||||||
int intervalsIncludedInWindowStats = 0;
|
int intervalsIncludedInWindowStats = 0;
|
||||||
while (i != end) {
|
while (i != end) {
|
||||||
|
|
Loading…
Reference in a new issue