Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-06-14 21:48:22 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-06-14 21:49:25 +0400
commitd6287b213bab87d80aca20b688b0a0ace7be5521 (patch)
tree069fae917f7a7cc6c514282fd7c5864e849f1828 /source/blender/blenlib/BLI_gsqueue.h
parentea2043eb3a31468d9afeb1d6cc140567e219565f (diff)
BLI_gsqueue: use size_t for elem_size (was casting all over)
Diffstat (limited to 'source/blender/blenlib/BLI_gsqueue.h')
-rw-r--r--source/blender/blenlib/BLI_gsqueue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_gsqueue.h b/source/blender/blenlib/BLI_gsqueue.h
index e002545d189..f7c669891ad 100644
--- a/source/blender/blenlib/BLI_gsqueue.h
+++ b/source/blender/blenlib/BLI_gsqueue.h
@@ -36,7 +36,7 @@
typedef struct _GSQueue GSQueue;
-GSQueue *BLI_gsqueue_new(int elem_size);
+GSQueue *BLI_gsqueue_new(size_t elem_size);
bool BLI_gsqueue_is_empty(GSQueue *gq);
int BLI_gsqueue_size(GSQueue *gq);
void BLI_gsqueue_peek(GSQueue *gq, void *item_r);