1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Whitespace.

This commit is contained in:
Timur Doumler 2016-06-02 15:22:29 +01:00
parent 920c19daab
commit e993eb7225
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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 <class ValueType>