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:
authorHoward Trickey <howard.trickey@gmail.com>2011-08-07 16:45:55 +0400
committerHoward Trickey <howard.trickey@gmail.com>2011-08-07 16:45:55 +0400
commit5f75407e227ecefe6fedb03fe6750f7584417eab (patch)
treeb41a56494fd1fe317dcb3ea012016ded78a29f95 /source/blender/blenlib/BLI_smallhash.h
parentaa1477cce1452b117769d1a6614294a3ebfd2314 (diff)
change TODO -> BMESH_TODO if only on bmesh branch
Diffstat (limited to 'source/blender/blenlib/BLI_smallhash.h')
-rwxr-xr-xsource/blender/blenlib/BLI_smallhash.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenlib/BLI_smallhash.h b/source/blender/blenlib/BLI_smallhash.h
index 0301ce6976e..c4711204b8a 100755
--- a/source/blender/blenlib/BLI_smallhash.h
+++ b/source/blender/blenlib/BLI_smallhash.h
@@ -100,7 +100,7 @@ BM_INLINE void BLI_smallhash_insert(SmallHash *hash, uintptr_t key, void *item)
{
int h, hoff=1;
- /* key = ABS(key); TODO: XXXXX this throws error with MSVC (warning as error) */
+ /* key = ABS(key); BMESH_TODO: XXXXX this throws error with MSVC (warning as error) */
if (hash->size < hash->used*3) {
int newsize = hashsizes[++hash->curhash];
@@ -156,7 +156,7 @@ BM_INLINE void BLI_smallhash_remove(SmallHash *hash, uintptr_t key)
{
int h, hoff=1;
- /* key = ABS(key); TODO: XXXXX this throws error with MSVC (warning as error) */
+ /* key = ABS(key); BMESH_TODO: XXXXX this throws error with MSVC (warning as error) */
h = key;
while (hash->table[h % hash->size].key != key
@@ -176,7 +176,7 @@ BM_INLINE void *BLI_smallhash_lookup(SmallHash *hash, uintptr_t key)
{
int h, hoff=1;
- /* key = ABS(key); TODO: XXXXX this throws error with MSVC (warning as error) */
+ /* key = ABS(key); BMESH_TODO: XXXXX this throws error with MSVC (warning as error) */
h = key;
if (!hash->table)
@@ -198,7 +198,7 @@ BM_INLINE int BLI_smallhash_haskey(SmallHash *hash, uintptr_t key)
{
int h = key, hoff=1;
h = ABS(h);
- /* key = ABS(key); TODO: XXXXX this throws error with MSVC (warning as error) */
+ /* key = ABS(key); BMESH_TODO: XXXXX this throws error with MSVC (warning as error) */
if (!hash->table)
return 0;