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>2014-04-27 20:22:03 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-27 21:05:37 +0400
commitc3d3ae3ee7549de94121bee52b9604b142a7f27f (patch)
tree28b30bd3fc650d3959b98ddcc5ee70d62435c47f /source/blender/editors/include/ED_armature.h
parentf0ec202099aa473778497f810ff6cb804511c77d (diff)
Code cleanup: avoid warning about bit-shift outside int range
Diffstat (limited to 'source/blender/editors/include/ED_armature.h')
-rw-r--r--source/blender/editors/include/ED_armature.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_armature.h b/source/blender/editors/include/ED_armature.h
index 4cf2257f6a1..be2c7daac85 100644
--- a/source/blender/editors/include/ED_armature.h
+++ b/source/blender/editors/include/ED_armature.h
@@ -90,7 +90,7 @@ typedef struct EditBone {
#define BONESEL_BONE (1 << 30)
#define BONESEL_ANY (BONESEL_TIP | BONESEL_ROOT | BONESEL_BONE)
-#define BONESEL_NOSEL (1 << 31) /* Indicates a negative number */
+#define BONESEL_NOSEL (1u << 31u)
/* useful macros */
#define EBONE_VISIBLE(arm, ebone) ( \