diff --git a/modules/juce_core/maths/juce_BigInteger.cpp b/modules/juce_core/maths/juce_BigInteger.cpp index 1eb9e63bd2..d55124506f 100644 --- a/modules/juce_core/maths/juce_BigInteger.cpp +++ b/modules/juce_core/maths/juce_BigInteger.cpp @@ -938,7 +938,7 @@ void BigInteger::extendedEuclidean (const BigInteger& a, const BigInteger& b, for (int i = 1; i < tempValues.size(); ++i) { - const BigInteger& v = tempValues.getReference (tempValues.size() - i - 1); + const BigInteger& v = tempValues.getReference (tempValues.size() - i - 1); if ((i & 1) != 0) x += y * v; diff --git a/modules/juce_core/unit_tests/juce_UnitTest.h b/modules/juce_core/unit_tests/juce_UnitTest.h index b3d1d7b2d6..72a2896fa9 100644 --- a/modules/juce_core/unit_tests/juce_UnitTest.h +++ b/modules/juce_core/unit_tests/juce_UnitTest.h @@ -139,7 +139,7 @@ public: void expect (bool testResult, const String& failureMessage = String()); //============================================================================== - /** Compares a value to an expected value. + /** Compares a value to an expected value. If they are not equal, prints out a message containing the expected and actual values. */ template