diff --git a/juce_amalgamated.cpp b/juce_amalgamated.cpp index c93a6d3b62..da64b24a65 100644 --- a/juce_amalgamated.cpp +++ b/juce_amalgamated.cpp @@ -79102,7 +79102,7 @@ BEGIN_JUCE_NAMESPACE const int juce_edgeTableDefaultEdgesPerLine = 32; EdgeTable::EdgeTable (const Rectangle& bounds_, - const Path& path, const AffineTransform& transform) throw() + const Path& path, const AffineTransform& transform) : bounds (bounds_), maxEdgesPerLine (juce_edgeTableDefaultEdgesPerLine), lineStrideElements ((juce_edgeTableDefaultEdgesPerLine << 1) + 1), @@ -79176,7 +79176,7 @@ EdgeTable::EdgeTable (const Rectangle& bounds_, sanitiseLevels (path.isUsingNonZeroWinding()); } -EdgeTable::EdgeTable (const Rectangle& rectangleToAdd) throw() +EdgeTable::EdgeTable (const Rectangle& rectangleToAdd) : bounds (rectangleToAdd), maxEdgesPerLine (juce_edgeTableDefaultEdgesPerLine), lineStrideElements ((juce_edgeTableDefaultEdgesPerLine << 1) + 1), @@ -79200,7 +79200,7 @@ EdgeTable::EdgeTable (const Rectangle& rectangleToAdd) throw() } } -EdgeTable::EdgeTable (const RectangleList& rectanglesToAdd) throw() +EdgeTable::EdgeTable (const RectangleList& rectanglesToAdd) : bounds (rectanglesToAdd.getBounds()), maxEdgesPerLine (juce_edgeTableDefaultEdgesPerLine), lineStrideElements ((juce_edgeTableDefaultEdgesPerLine << 1) + 1), @@ -79234,7 +79234,7 @@ EdgeTable::EdgeTable (const RectangleList& rectanglesToAdd) throw() sanitiseLevels (true); } -EdgeTable::EdgeTable (const float x, const float y, const float w, const float h) throw() +EdgeTable::EdgeTable (const float x, const float y, const float w, const float h) : bounds (Rectangle ((int) floorf (x), roundToInt (y * 256.0f) >> 8, 2 + (int) w, 2 + (int) h)), maxEdgesPerLine (juce_edgeTableDefaultEdgesPerLine), lineStrideElements ((juce_edgeTableDefaultEdgesPerLine << 1) + 1), @@ -79309,13 +79309,13 @@ EdgeTable::EdgeTable (const float x, const float y, const float w, const float h } } -EdgeTable::EdgeTable (const EdgeTable& other) throw() +EdgeTable::EdgeTable (const EdgeTable& other) : table (0) { operator= (other); } -EdgeTable& EdgeTable::operator= (const EdgeTable& other) throw() +EdgeTable& EdgeTable::operator= (const EdgeTable& other) { bounds = other.bounds; maxEdgesPerLine = other.maxEdgesPerLine; @@ -79327,7 +79327,7 @@ EdgeTable& EdgeTable::operator= (const EdgeTable& other) throw() return *this; } -EdgeTable::~EdgeTable() throw() +EdgeTable::~EdgeTable() { } @@ -250197,7 +250197,7 @@ public: { if (inputDevice == 0) { - callback->audioDeviceIOCallback (const_cast (inputDevice->tempInputBuffers.getData()), + callback->audioDeviceIOCallback (const_cast (tempInputBuffers.getData()), numInputChans, tempOutputBuffers, numOutputChans, diff --git a/juce_amalgamated.h b/juce_amalgamated.h index 60bd21c6b9..a74dd76637 100644 --- a/juce_amalgamated.h +++ b/juce_amalgamated.h @@ -43,7 +43,7 @@ #define JUCE_MAJOR_VERSION 1 #define JUCE_MINOR_VERSION 51 -#define JUCE_BUILDNUMBER 7 +#define JUCE_BUILDNUMBER 8 #define JUCE_VERSION ((JUCE_MAJOR_VERSION << 16) + (JUCE_MINOR_VERSION << 8) + JUCE_BUILDNUMBER) @@ -10185,20 +10185,20 @@ public: EdgeTable (const Rectangle& clipLimits, const Path& pathToAdd, - const AffineTransform& transform) throw(); + const AffineTransform& transform); - EdgeTable (const Rectangle& rectangleToAdd) throw(); + EdgeTable (const Rectangle& rectangleToAdd); - EdgeTable (const RectangleList& rectanglesToAdd) throw(); + EdgeTable (const RectangleList& rectanglesToAdd); EdgeTable (const float x, const float y, - const float w, const float h) throw(); + const float w, const float h); - EdgeTable (const EdgeTable& other) throw(); + EdgeTable (const EdgeTable& other); - EdgeTable& operator= (const EdgeTable& other) throw(); + EdgeTable& operator= (const EdgeTable& other); - ~EdgeTable() throw(); + ~EdgeTable(); void clipToRectangle (const Rectangle& r) throw(); void excludeRectangle (const Rectangle& r) throw(); diff --git a/src/core/juce_StandardHeader.h b/src/core/juce_StandardHeader.h index 21836072fd..9fa5ece878 100644 --- a/src/core/juce_StandardHeader.h +++ b/src/core/juce_StandardHeader.h @@ -33,7 +33,7 @@ */ #define JUCE_MAJOR_VERSION 1 #define JUCE_MINOR_VERSION 51 -#define JUCE_BUILDNUMBER 7 +#define JUCE_BUILDNUMBER 8 /** Current Juce version number. diff --git a/src/gui/graphics/contexts/juce_EdgeTable.cpp b/src/gui/graphics/contexts/juce_EdgeTable.cpp index aae4dda189..0b19077d76 100644 --- a/src/gui/graphics/contexts/juce_EdgeTable.cpp +++ b/src/gui/graphics/contexts/juce_EdgeTable.cpp @@ -36,7 +36,7 @@ const int juce_edgeTableDefaultEdgesPerLine = 32; //============================================================================== EdgeTable::EdgeTable (const Rectangle& bounds_, - const Path& path, const AffineTransform& transform) throw() + const Path& path, const AffineTransform& transform) : bounds (bounds_), maxEdgesPerLine (juce_edgeTableDefaultEdgesPerLine), lineStrideElements ((juce_edgeTableDefaultEdgesPerLine << 1) + 1), @@ -110,7 +110,7 @@ EdgeTable::EdgeTable (const Rectangle& bounds_, sanitiseLevels (path.isUsingNonZeroWinding()); } -EdgeTable::EdgeTable (const Rectangle& rectangleToAdd) throw() +EdgeTable::EdgeTable (const Rectangle& rectangleToAdd) : bounds (rectangleToAdd), maxEdgesPerLine (juce_edgeTableDefaultEdgesPerLine), lineStrideElements ((juce_edgeTableDefaultEdgesPerLine << 1) + 1), @@ -134,7 +134,7 @@ EdgeTable::EdgeTable (const Rectangle& rectangleToAdd) throw() } } -EdgeTable::EdgeTable (const RectangleList& rectanglesToAdd) throw() +EdgeTable::EdgeTable (const RectangleList& rectanglesToAdd) : bounds (rectanglesToAdd.getBounds()), maxEdgesPerLine (juce_edgeTableDefaultEdgesPerLine), lineStrideElements ((juce_edgeTableDefaultEdgesPerLine << 1) + 1), @@ -168,7 +168,7 @@ EdgeTable::EdgeTable (const RectangleList& rectanglesToAdd) throw() sanitiseLevels (true); } -EdgeTable::EdgeTable (const float x, const float y, const float w, const float h) throw() +EdgeTable::EdgeTable (const float x, const float y, const float w, const float h) : bounds (Rectangle ((int) floorf (x), roundToInt (y * 256.0f) >> 8, 2 + (int) w, 2 + (int) h)), maxEdgesPerLine (juce_edgeTableDefaultEdgesPerLine), lineStrideElements ((juce_edgeTableDefaultEdgesPerLine << 1) + 1), @@ -243,13 +243,13 @@ EdgeTable::EdgeTable (const float x, const float y, const float w, const float h } } -EdgeTable::EdgeTable (const EdgeTable& other) throw() +EdgeTable::EdgeTable (const EdgeTable& other) : table (0) { operator= (other); } -EdgeTable& EdgeTable::operator= (const EdgeTable& other) throw() +EdgeTable& EdgeTable::operator= (const EdgeTable& other) { bounds = other.bounds; maxEdgesPerLine = other.maxEdgesPerLine; @@ -261,7 +261,7 @@ EdgeTable& EdgeTable::operator= (const EdgeTable& other) throw() return *this; } -EdgeTable::~EdgeTable() throw() +EdgeTable::~EdgeTable() { } diff --git a/src/gui/graphics/contexts/juce_EdgeTable.h b/src/gui/graphics/contexts/juce_EdgeTable.h index f1ee57435b..3ef79220b7 100644 --- a/src/gui/graphics/contexts/juce_EdgeTable.h +++ b/src/gui/graphics/contexts/juce_EdgeTable.h @@ -55,29 +55,29 @@ public: */ EdgeTable (const Rectangle& clipLimits, const Path& pathToAdd, - const AffineTransform& transform) throw(); + const AffineTransform& transform); /** Creates an edge table containing a rectangle. */ - EdgeTable (const Rectangle& rectangleToAdd) throw(); + EdgeTable (const Rectangle& rectangleToAdd); /** Creates an edge table containing a rectangle list. */ - EdgeTable (const RectangleList& rectanglesToAdd) throw(); + EdgeTable (const RectangleList& rectanglesToAdd); /** Creates an edge table containing a rectangle. */ EdgeTable (const float x, const float y, - const float w, const float h) throw(); + const float w, const float h); /** Creates a copy of another edge table. */ - EdgeTable (const EdgeTable& other) throw(); + EdgeTable (const EdgeTable& other); /** Copies from another edge table. */ - EdgeTable& operator= (const EdgeTable& other) throw(); + EdgeTable& operator= (const EdgeTable& other); /** Destructor. */ - ~EdgeTable() throw(); + ~EdgeTable(); //============================================================================== void clipToRectangle (const Rectangle& r) throw(); diff --git a/src/native/mac/juce_mac_CoreAudio.cpp b/src/native/mac/juce_mac_CoreAudio.cpp index 8fd181c77b..b1a1069916 100644 --- a/src/native/mac/juce_mac_CoreAudio.cpp +++ b/src/native/mac/juce_mac_CoreAudio.cpp @@ -628,7 +628,7 @@ public: { if (inputDevice == 0) { - callback->audioDeviceIOCallback (const_cast (inputDevice->tempInputBuffers.getData()), + callback->audioDeviceIOCallback (const_cast (tempInputBuffers.getData()), numInputChans, tempOutputBuffers, numOutputChans,