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/intern/BLI_heap.c
parent89c8de1f48607a5d887b44966be220ed9bf93285 (diff)
warn of sign conversions for low level apis - ghash, heap, mempool
Diffstat (limited to 'source/blender/blenlib/intern/BLI_heap.c')
-rw-r--r--source/blender/blenlib/intern/BLI_heap.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/BLI_heap.c b/source/blender/blenlib/intern/BLI_heap.c
index 53489c76962..a8fdcd56abb 100644
--- a/source/blender/blenlib/intern/BLI_heap.c
+++ b/source/blender/blenlib/intern/BLI_heap.c
@@ -38,6 +38,10 @@
#include "BLI_memarena.h"
#include "BLI_heap.h"
+#ifdef __GNUC__
+# pragma GCC diagnostic error "-Wsign-conversion"
+#endif
+
/***/
struct HeapNode {