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:
authorHans Goudey <h.goudey@me.com>2022-04-01 21:55:17 +0300
committerHans Goudey <h.goudey@me.com>2022-04-01 21:55:17 +0300
commit11c6d4e88eb9190826833390d577f9fffb45e971 (patch)
tree930aa2b3389a19417de060822feb598c4bf524e3 /source/blender/makesdna/DNA_object_types.h
parentf688e3cc3130e70e77f0bb050cd71cf1549c765c (diff)
Cleanup: Remove unused boundbox flag
This flag hasn't been used for around four years. The convention in this header seems to be commenting out the flag and adding "UNUSED" after it.
Diffstat (limited to 'source/blender/makesdna/DNA_object_types.h')
-rw-r--r--source/blender/makesdna/DNA_object_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_object_types.h b/source/blender/makesdna/DNA_object_types.h
index 838a4ed2818..30f80110f6e 100644
--- a/source/blender/makesdna/DNA_object_types.h
+++ b/source/blender/makesdna/DNA_object_types.h
@@ -93,7 +93,7 @@ typedef struct BoundBox {
/** #BoundBox.flag */
enum {
- BOUNDBOX_DISABLED = (1 << 0),
+ /* BOUNDBOX_DISABLED = (1 << 0), */ /* UNUSED */
BOUNDBOX_DIRTY = (1 << 1),
};