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>2013-05-08 16:55:51 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-08 16:55:51 +0400
commit3b341068ba6be81083644ca56649466ad933fdbb (patch)
treef704b667f0925699cc3df7cd148145504666f946 /source/blender/blenlib/BLI_ghash.h
parent89c8de1f48607a5d887b44966be220ed9bf93285 (diff)
warn of sign conversions for low level apis - ghash, heap, mempool
Diffstat (limited to 'source/blender/blenlib/BLI_ghash.h')
-rw-r--r--source/blender/blenlib/BLI_ghash.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_ghash.h b/source/blender/blenlib/BLI_ghash.h
index 641aaa1f3fc..d54d4d5272b 100644
--- a/source/blender/blenlib/BLI_ghash.h
+++ b/source/blender/blenlib/BLI_ghash.h
@@ -54,7 +54,8 @@ typedef struct GHash {
Entry **buckets;
struct BLI_mempool *entrypool;
- int nbuckets, nentries, cursize;
+ unsigned int nbuckets;
+ unsigned int nentries, cursize;
} GHash;
typedef struct GHashIterator {