From 0d36225dd1e8ded87949d157fedb07f9d949cb30 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 12 May 2013 06:33:21 +0000 Subject: quiet sign conversion warnings and reduce sign conversion for BLI_string, and BLF. --- source/blender/blenlib/intern/string_cursor_utf8.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source/blender/blenlib/intern/string_cursor_utf8.c') diff --git a/source/blender/blenlib/intern/string_cursor_utf8.c b/source/blender/blenlib/intern/string_cursor_utf8.c index 38e57cacfb4..a0d3be91607 100644 --- a/source/blender/blenlib/intern/string_cursor_utf8.c +++ b/source/blender/blenlib/intern/string_cursor_utf8.c @@ -36,6 +36,10 @@ #include "BLI_string_cursor_utf8.h" /* own include */ +#ifdef __GNUC__ +# pragma GCC diagnostic error "-Wsign-conversion" +#endif + typedef enum strCursorDelimType { STRCUR_DELIM_NONE, STRCUR_DELIM_ALPHANUMERIC, -- cgit v1.2.3