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

A few minor changes to keep the Clang analyser happy.

This commit is contained in:
jules 2013-11-19 14:11:27 +00:00
parent 2aba3447e4
commit 1e4ba1b550
7 changed files with 13 additions and 14 deletions

View file

@ -467,7 +467,7 @@ void b2Distance(b2DistanceOutput* output,
b2Vec2 closestPoint = simplex.GetClosestPoint();
float32 distanceSqr1 = closestPoint.LengthSquared();
float32 distanceSqr2 = distanceSqr1;
float32 distanceSqr2;// = distanceSqr1;
// Main iteration loop.
int32 iter = 0;