Skip to content

Instantly share code, notes, and snippets.

@splhack
Created October 6, 2009 06:56
Show Gist options
  • Save splhack/202807 to your computer and use it in GitHub Desktop.
Save splhack/202807 to your computer and use it in GitHub Desktop.
diff --git a/libs/Box2D/Collision/b2Distance.cpp b/libs/Box2D/Collision/b2Distance.cpp
index f16a300..ff030fa 100644
--- a/libs/Box2D/Collision/b2Distance.cpp
+++ b/libs/Box2D/Collision/b2Distance.cpp
@@ -67,7 +67,7 @@ struct b2Simplex
const b2DistanceProxy* proxyA, const b2Transform& transformA,
const b2DistanceProxy* proxyB, const b2Transform& transformB)
{
- b2Assert(0 <= cache->count && cache->count <= 3);
+ b2Assert(/*0 <= cache->count && */cache->count <= 3);
// Copy data from cache.
m_count = cache->count;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment