[Bf-blender-cvs] [09838ed24ca] blender2.8: Comment out and tag unused bit as unused

Sergey Sharybin noreply at git.blender.org
Wed Dec 13 16:44:25 CET 2017


Commit: 09838ed24cae429626fe772deb9e26857dc27830
Author: Sergey Sharybin
Date:   Wed Dec 13 16:34:13 2017 +0100
Branches: blender2.8
https://developer.blender.org/rB09838ed24cae429626fe772deb9e26857dc27830

Comment out and tag unused bit as unused

===================================================================

M	source/blender/makesdna/DNA_ID.h

===================================================================

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,



More information about the Bf-blender-cvs mailing list