Comment out and tag unused bit as unused

This commit is contained in:
Sergey Sharybin 2017-12-13 16:34:13 +01:00
parent 33c97351fb
commit 09838ed24c
1 changed files with 2 additions and 2 deletions

View File

@ -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,