Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
erincatto committed Jul 26, 2023
1 parent 4d5d696 commit b7ba610
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dynamic_tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ static inline bool b2IsLeaf(const b2TreeNode* node)

b2DynamicTree b2DynamicTree_Create()
{
_Static_assert((sizeof(b2TreeNode) & 0xF) == 0);
_Static_assert((sizeof(b2TreeNode) & 0xF) == 0, "tree node size not a multiple of 16");

b2DynamicTree tree;
tree.root = B2_NULL_INDEX;
Expand Down

0 comments on commit b7ba610

Please sign in to comment.