Fixes by Charlie Hotchkiss.
This commit is contained in:
parent
7c27474164
commit
9ea57fcc30
1 changed files with 2 additions and 2 deletions
|
@ -119,12 +119,12 @@ inline gzofstream &setcompressionstrategy( gzofstream &s, int l ) {
|
|||
|
||||
inline gzomanip<int> setcompressionlevel(int l)
|
||||
{
|
||||
return gzomanip<int>(&setcompressionlevel,l);
|
||||
return gzomanip<int>( /* & */ setcompressionlevel,l); // & superfluous
|
||||
}
|
||||
|
||||
inline gzomanip<int> setcompressionstrategy(int l)
|
||||
{
|
||||
return gzomanip<int>(&setcompressionstrategy,l);
|
||||
return gzomanip<int>( /* & */ setcompressionstrategy,l); // & superfluous
|
||||
}
|
||||
|
||||
#endif // _zfstream_hxx
|
||||
|
|
Loading…
Add table
Reference in a new issue