From f38e0686d909aa0d2882c197aeff59eeefa17081 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Luc=20Peuri=C3=A8re?= Date: Sat, 4 Jun 2005 16:22:50 +0000 Subject: new round of warning fixes. we are now down to 24 with Xcode on blender alone with the following flags : -Wall -Wno-char-subscripts -Wno-missing-braces. the only one still worrying me is in rand.c line 57 : rand.c:57: integer constant is too large for "long" type but i have no clue about how correct cross-compiler and 32/64 bits friendly see also my mail to commiter list for signed/unsigned issues --- source/blender/include/BIF_resources.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/include/BIF_resources.h') diff --git a/source/blender/include/BIF_resources.h b/source/blender/include/BIF_resources.h index 5a01276adbc..2f194a58118 100644 --- a/source/blender/include/BIF_resources.h +++ b/source/blender/include/BIF_resources.h @@ -299,7 +299,7 @@ typedef enum { ICON_CURSOR, ICON_ROTATECOLLECTION, ICON_ROTATECENTER, - ICON_ROTACTIVE, + ICON_ROTACTIVE #define BIFICONID_LAST (ICON_ROTACTIVE) #define BIFNICONIDS (BIFICONID_LAST-BIFICONID_FIRST + 1) @@ -312,7 +312,7 @@ typedef enum { COLORSHADE_MEDIUM, COLORSHADE_HILITE, COLORSHADE_LIGHT, - COLORSHADE_WHITE, + COLORSHADE_WHITE #define BIFCOLORSHADE_LAST (COLORSHADE_WHITE) #define BIFNCOLORSHADES (BIFCOLORSHADE_LAST-BIFCOLORSHADE_FIRST + 1) } BIFColorShade; @@ -365,7 +365,7 @@ typedef enum { EDITVERTSEL, EDITVERTUNSEL, EDITEDGESEL, - EDITEDGEUNSEL, + EDITEDGEUNSEL #define BIFCOLORID_LAST (EDITEDGEUNSEL) #define BIFNCOLORIDS (BIFCOLORID_LAST-BIFCOLORID_FIRST + 1) -- cgit v1.2.3