upgrade to JUCE 5.4.3. Remove (probably) unused JUCE modules. Remove VST2 target (it's been end-of-life'd by Steinberg and by JUCE)

This commit is contained in:
Alex Birch
2019-06-22 20:41:38 +01:00
parent d22c2cd4fa
commit 9ee566b251
1140 changed files with 67534 additions and 105952 deletions

View File

@ -37,7 +37,7 @@ class JUCE_API InputStream
{
public:
/** Destructor. */
virtual ~InputStream() {}
virtual ~InputStream() = default;
//==============================================================================
/** Returns the total number of bytes available for reading in this stream.
@ -243,16 +243,17 @@ public:
/** Reads and discards a number of bytes from the stream.
Some input streams might implement this efficiently, but the base
Some input streams might implement this more efficiently, but the base
class will just keep reading data until the requisite number of bytes
have been done.
have been done. For large skips it may be quicker to call setPosition()
with the required position.
*/
virtual void skipNextBytes (int64 numBytesToSkip);
protected:
//==============================================================================
InputStream() noexcept {}
InputStream() = default;
private:
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (InputStream)