diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2014-03-12 16:42:03 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2014-03-12 16:42:03 -0400 |
commit | cd1ea8629e5e9c3f647b4a7f7840f66dfe649662 (patch) | |
tree | 6e86749a9c93c9e2c3c378f1a3a92a4e8878e04d /kd-forest.h | |
parent | 51fdafaf03cd7891121047035b5153832c1992a9 (diff) | |
download | kd-forest-cd1ea8629e5e9c3f647b4a7f7840f66dfe649662.tar.xz |
Be more const friendly.
Diffstat (limited to 'kd-forest.h')
-rw-r--r-- | kd-forest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kd-forest.h b/kd-forest.h index 75d8666..4cf5750 100644 --- a/kd-forest.h +++ b/kd-forest.h @@ -51,6 +51,6 @@ void kdf_init(kd_forest_t *kdf); void kdf_destroy(kd_forest_t *kdf); void kdf_insert(kd_forest_t *kdf, kd_node_t *node); void kdf_remove(kd_forest_t *kdf, kd_node_t *node); -kd_node_t *kdf_find_nearest(kd_forest_t *kdf, kd_node_t *target); +kd_node_t *kdf_find_nearest(kd_forest_t *kdf, const kd_node_t *target); #endif // KD_FOREST_H |