From 688537cf5ccb709c23359eb855946bedd5b65fcf Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 28 Apr 2011 03:42:36 +0000 Subject: Use size_t for node and triple counts. git-svn-id: http://svn.drobilla.net/sord/trunk@97 3d64ff67-21c5-427c-a301-fe4f08042e5a --- sord/sord.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sord/sord.h') 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); /** -- cgit v1.2.1