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-12-09 17:51:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2014-12-09 17:51:58 +0300
commit171a6bb5dc19655b3b7aee70496849890da1e4e4 (patch)
treefd87b2b117b4cbef974a00206546db178777cf72 /source/blender/blenlib/BLI_ghash.h
parent8fe336ce7e726c2a800c8648e5118576e77b1ddf (diff)
Fix T42488: Knife (selected_only + occlude) failed
Diffstat (limited to 'source/blender/blenlib/BLI_ghash.h')
-rw-r--r--source/blender/blenlib/BLI_ghash.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_ghash.h b/source/blender/blenlib/BLI_ghash.h
index af2605894e3..8be19d0c08b 100644
--- a/source/blender/blenlib/BLI_ghash.h
+++ b/source/blender/blenlib/BLI_ghash.h
@@ -41,6 +41,7 @@ extern "C" {
#endif
typedef unsigned int (*GHashHashFP) (const void *key);
+/** returns false when equal */
typedef bool (*GHashCmpFP) (const void *a, const void *b);
typedef void (*GHashKeyFreeFP) (void *key);
typedef void (*GHashValFreeFP) (void *val);