mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 06:44:06 +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;
|
||||
|
||||
// update the window's stats by combining the intervals' stats
|
||||
RingBufferHistory<Stats>::Iterator i = _intervalStats.begin();
|
||||
RingBufferHistory<Stats>::Iterator end = _intervalStats.end();
|
||||
typename RingBufferHistory<Stats>::Iterator i = _intervalStats.begin();
|
||||
typename RingBufferHistory<Stats>::Iterator end = _intervalStats.end();
|
||||
_windowStats = Stats();
|
||||
int intervalsIncludedInWindowStats = 0;
|
||||
while (i != end) {
|
||||
|
|
Loading…
Reference in a new issue