mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-07 04:10:08 +00:00
Minor clean-ups.
This commit is contained in:
parent
c7957d7d1e
commit
8bf4d88d97
90 changed files with 1681 additions and 1717 deletions
|
|
@ -34,7 +34,7 @@ BEGIN_JUCE_NAMESPACE
|
|||
//==============================================================================
|
||||
BufferedInputStream::BufferedInputStream (InputStream* const source_,
|
||||
const int bufferSize_,
|
||||
const bool deleteSourceWhenDestroyed) throw()
|
||||
const bool deleteSourceWhenDestroyed)
|
||||
: source (source_),
|
||||
sourceToDelete (deleteSourceWhenDestroyed ? source_ : 0),
|
||||
bufferSize (jmax (256, bufferSize_)),
|
||||
|
|
@ -50,7 +50,7 @@ BufferedInputStream::BufferedInputStream (InputStream* const source_,
|
|||
buffer.malloc (bufferSize);
|
||||
}
|
||||
|
||||
BufferedInputStream::~BufferedInputStream() throw()
|
||||
BufferedInputStream::~BufferedInputStream()
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue