From 9be3d67ab8bbac96b49ae714b20c02d29d86a82c Mon Sep 17 00:00:00 2001 From: jules Date: Fri, 24 Jul 2015 10:30:55 +0100 Subject: [PATCH] Removed the leak detector from AffineTransform to avoid false alarms with static instances of the class. (You should never allocate one of these on the heap anyway) --- modules/juce_graphics/geometry/juce_AffineTransform.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/modules/juce_graphics/geometry/juce_AffineTransform.h b/modules/juce_graphics/geometry/juce_AffineTransform.h index 0d24ef07f0..f9773f3923 100644 --- a/modules/juce_graphics/geometry/juce_AffineTransform.h +++ b/modules/juce_graphics/geometry/juce_AffineTransform.h @@ -275,11 +275,6 @@ public: */ float mat00, mat01, mat02; float mat10, mat11, mat12; - - -private: - //============================================================================== - JUCE_LEAK_DETECTOR (AffineTransform) }; #endif // JUCE_AFFINETRANSFORM_H_INCLUDED