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:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-12-13 18:34:13 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-12-13 18:34:13 +0300
commit09838ed24cae429626fe772deb9e26857dc27830 (patch)
tree86cd9b3849c78ce4c1cbeb95c97882dbb3fc8164 /source/blender/makesdna/DNA_ID.h
parent33c97351fb6a1a6bbc510c23180d8c373780a6ed (diff)
Comment out and tag unused bit as unused
Diffstat (limited to 'source/blender/makesdna/DNA_ID.h')
-rw-r--r--source/blender/makesdna/DNA_ID.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index 58beee01aa4..6f08afd0fe4 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -439,9 +439,9 @@ enum {
/* RESET_AFTER_USE, used by update code (depsgraph). */
LIB_TAG_ID_RECALC = 1 << 12,
- LIB_TAG_ID_RECALC_DATA = 1 << 13,
+ /* LIB_TAG_AVAILABLE = 1 << 13, */ /* Was used by deprecated flag. */
/* LIB_TAG_AVAILABLE = 1 << 14, */ /* Was used by deprecated flag. */
- LIB_TAG_ID_RECALC_ALL = (LIB_TAG_ID_RECALC | LIB_TAG_ID_RECALC_DATA),
+ LIB_TAG_ID_RECALC_ALL = (LIB_TAG_ID_RECALC),
/* The datablock is a copy-on-write version. */
LIB_TAG_COPY_ON_WRITE = 1 << 15,