bool x = NULL => bool x = false, to silence Clang.

This commit is contained in:
James Gregory 2013-04-03 18:30:09 -07:00
parent 5a23190672
commit 0bef8d4325
1 changed files with 2 additions and 2 deletions

View File

@ -95,8 +95,8 @@ inline b2ChainShape::b2ChainShape()
m_radius = b2_polygonRadius; m_radius = b2_polygonRadius;
m_vertices = NULL; m_vertices = NULL;
m_count = 0; m_count = 0;
m_hasPrevVertex = NULL; m_hasPrevVertex = false;
m_hasNextVertex = NULL; m_hasNextVertex = false;
} }
#endif #endif