From e993eb7225a0823b2ed614ab3f9b7a86d1cd8695 Mon Sep 17 00:00:00 2001 From: Timur Doumler Date: Thu, 2 Jun 2016 15:22:29 +0100 Subject: [PATCH] Whitespace. --- modules/juce_core/maths/juce_BigInteger.cpp | 2 +- modules/juce_core/unit_tests/juce_UnitTest.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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