diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2018-10-03 00:49:39 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2018-10-03 00:49:39 -0700 |
commit | ff7f7fa2b0f0db3dc2adeb65929510126c371b26 (patch) | |
tree | b215e7ad00f8429b79d529245750c0eb69575990 | |
parent | 2d30a3aa692213a117637e78b82304ecd39a90a9 (diff) |
libix2: make split_node() static
This is a private helper function.
-rw-r--r-- | src/ix2.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -291,7 +291,7 @@ static void remove_object(ix2_object_t *object) /* Split node and distribute objects referenced from node->objects into a * newly created node->children. */ -ix2_node_t * split_node(ix2_t *ix2, unsigned *depth, ix2_node_t *node, bb2f_t *node_aabb) +static ix2_node_t * split_node(ix2_t *ix2, unsigned *depth, ix2_node_t *node, bb2f_t *node_aabb) { bb2f_t quadrants[4]; ix2_object_ref_t *r, *_r; |