mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Avoided a shadowed variable warning
This commit is contained in:
parent
822a1e31b8
commit
8a93402143
1 changed files with 2 additions and 2 deletions
|
|
@ -113,8 +113,8 @@ private:
|
|||
};
|
||||
|
||||
//==============================================================================
|
||||
GZIPCompressorOutputStream::GZIPCompressorOutputStream (OutputStream& destStream, int compressionLevel, int windowBits)
|
||||
: GZIPCompressorOutputStream (&destStream, compressionLevel, false, windowBits)
|
||||
GZIPCompressorOutputStream::GZIPCompressorOutputStream (OutputStream& s, int compressionLevel, int windowBits)
|
||||
: GZIPCompressorOutputStream (&s, compressionLevel, false, windowBits)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue