From 1fb980e7df3587982e9117c409f4c1e5af50c90a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 22 Jun 2013 20:20:06 +0000 Subject: reduce sign conversion comparisons for smallhash and tweak warnings elsewhere. --- source/blender/blenlib/intern/BLI_heap.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/blenlib/intern/BLI_heap.c') diff --git a/source/blender/blenlib/intern/BLI_heap.c b/source/blender/blenlib/intern/BLI_heap.c index 8b849753df7..16005ce6617 100644 --- a/source/blender/blenlib/intern/BLI_heap.c +++ b/source/blender/blenlib/intern/BLI_heap.c @@ -41,10 +41,10 @@ #ifdef __GNUC__ # pragma GCC diagnostic error "-Wsign-conversion" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 /* gcc4.6+ only */ -# pragma GCC diagnostic error "-Wsign-compare" -# pragma GCC diagnostic error "-Wconversion" -#endif +# if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 /* gcc4.6+ only */ +# pragma GCC diagnostic error "-Wsign-compare" +# pragma GCC diagnostic error "-Wconversion" +# endif #endif /***/ -- cgit v1.2.3