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-23 00:20:06 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-06-23 00:20:06 +0400
commit1fb980e7df3587982e9117c409f4c1e5af50c90a (patch)
tree8ab7180e68aecc113ee6db633cfee79dce7b3063 /source/blender/blenlib/BLI_smallhash.h
parentd23bf097128b4baf032d14c345e9d97656f2da78 (diff)
reduce sign conversion comparisons for smallhash and tweak warnings elsewhere.
Diffstat (limited to 'source/blender/blenlib/BLI_smallhash.h')
-rw-r--r--source/blender/blenlib/BLI_smallhash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_smallhash.h b/source/blender/blenlib/BLI_smallhash.h
index b6acc06159a..275599a612c 100644
--- a/source/blender/blenlib/BLI_smallhash.h
+++ b/source/blender/blenlib/BLI_smallhash.h
@@ -56,7 +56,7 @@ typedef struct SmallHash {
typedef struct {
SmallHash *hash;
- int i;
+ unsigned int i;
} SmallHashIter;
#ifdef __GNUC__