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-06-20 23:39:29 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-06-20 23:39:29 +0400
commit2efea8cf03f9bcb923d969b9ba4c905503e306dc (patch)
tree0179a6aa6b050d825ec8132cbbe8e982bcc89f95 /source/blender/blenlib/BLI_ghash.h
parent6a269e2a8e327fdc81f158b4e24c8909837f013c (diff)
reduce sign comparisons for ghash and add more strict warnings for gcc.
Diffstat (limited to 'source/blender/blenlib/BLI_ghash.h')
-rw-r--r--source/blender/blenlib/BLI_ghash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_ghash.h b/source/blender/blenlib/BLI_ghash.h
index 07ab6f3869e..930715b4bc6 100644
--- a/source/blender/blenlib/BLI_ghash.h
+++ b/source/blender/blenlib/BLI_ghash.h
@@ -60,7 +60,7 @@ typedef struct GHash {
typedef struct GHashIterator {
GHash *gh;
- int curBucket;
+ unsigned int curBucket;
struct Entry *curEntry;
} GHashIterator;