summaryrefslogtreecommitdiffstats
path: root/sord
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-28 03:42:36 +0000
committerDavid Robillard <d@drobilla.net>2011-04-28 03:42:36 +0000
commit688537cf5ccb709c23359eb855946bedd5b65fcf (patch)
tree6a690c182bcd11e7d85b5993c21b473b16470ee7 /sord
parentb9fae06dc9459b7d3b87c561434ddc2ced821f87 (diff)
downloadsord-688537cf5ccb709c23359eb855946bedd5b65fcf.tar.gz
sord-688537cf5ccb709c23359eb855946bedd5b65fcf.tar.bz2
sord-688537cf5ccb709c23359eb855946bedd5b65fcf.zip
Use size_t for node and triple counts.
git-svn-id: http://svn.drobilla.net/sord/trunk@97 3d64ff67-21c5-427c-a301-fe4f08042e5a
Diffstat (limited to 'sord')
-rw-r--r--sord/sord.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sord/sord.h b/sord/sord.h
index 530247e..587456b 100644
--- a/sord/sord.h
+++ b/sord/sord.h
@@ -317,14 +317,14 @@ sord_get_world(SordModel* model);
Nodes are included in this count iff they are a part of a quad in @c world.
*/
SORD_API
-int
+size_t
sord_num_nodes(const SordWorld* world);
/**
Return the number of quads stored in @c model.
*/
SORD_API
-int
+size_t
sord_num_quads(const SordModel* model);
/**