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-12 10:33:21 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-12 10:33:21 +0400
commit0d36225dd1e8ded87949d157fedb07f9d949cb30 (patch)
tree7ee65f80bc76e4d7d1e19c0ac352be957b8b69b1 /source/blender/blenlib/intern/string_cursor_utf8.c
parent7b707fff56209d8997a2d52dde6f38e67be56c31 (diff)
quiet sign conversion warnings and reduce sign conversion for BLI_string, and BLF.
Diffstat (limited to 'source/blender/blenlib/intern/string_cursor_utf8.c')
-rw-r--r--source/blender/blenlib/intern/string_cursor_utf8.c4
1 files changed, 4 insertions, 0 deletions
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,