This website works better with JavaScript.
Home
Help
Sign In
jackaudio
/
jack2
mirror of
https://github.com/jackaudio/jack2
Watch
1
Star
0
Fork
0
Code
Releases
45
Activity
Browse Source
gcc-4.7 fix for fill_n
tags/1.9.9.5
Adrian Knoth
13 years ago
parent
dfbd8ce733
commit
6c06e134ab
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
common/JackTools.h
+ 1
- 1
common/JackTools.h
View File
@@ -123,7 +123,7 @@ namespace Jack
for ( uint32_t cnt = 0; cnt < fMeasureCnt; cnt++ )
{
fMeasureTable[cnt] = new T[fMeasurePoints];
fill_n ( fMeasureTable[cnt], fMeasurePoints, 0 );
std::
fill_n ( fMeasureTable[cnt], fMeasurePoints, 0 );
}
}
Write
Preview
Loading…
Cancel
Save