From 434b0e7c9b269465e4ebd0873a28fda2e7aa7244 Mon Sep 17 00:00:00 2001 From: jules Date: Thu, 28 Sep 2017 11:30:44 +0100 Subject: [PATCH] Got rid of a long-defunct alias "BitArray". If your code still uses this name, you can just replace or alias it to BigInteger, which is what the class was renamed to. --- modules/juce_core/maths/juce_BigInteger.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/juce_core/maths/juce_BigInteger.h b/modules/juce_core/maths/juce_BigInteger.h index 54726e7fe4..5db99f9040 100644 --- a/modules/juce_core/maths/juce_BigInteger.h +++ b/modules/juce_core/maths/juce_BigInteger.h @@ -337,10 +337,4 @@ private: /** Writes a BigInteger to an OutputStream as a UTF8 decimal string. */ OutputStream& JUCE_CALLTYPE operator<< (OutputStream& stream, const BigInteger& value); -//============================================================================== -#ifndef DOXYGEN - // For backwards compatibility, BitArray is defined as an alias for BigInteger. - typedef BigInteger BitArray; -#endif - } // namespace juce