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>2016-07-26 11:38:13 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-07-26 11:45:07 +0300
commit40a0fa8a8f1299e614ecaf6c271ef5a7fa02ee46 (patch)
tree4a72f84fc62375cb34747254e7f020d5e2ca53c7 /source/blender/depsgraph/intern/nodes/deg_node.h
parenteececb0d8036bfcf048a3f1e47e8033e21bf86a9 (diff)
Depsgraph: Use proper unsigned int bitfield for layers flags
Diffstat (limited to 'source/blender/depsgraph/intern/nodes/deg_node.h')
-rw-r--r--source/blender/depsgraph/intern/nodes/deg_node.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/nodes/deg_node.h b/source/blender/depsgraph/intern/nodes/deg_node.h
index 416996052c9..b2262c4bd12 100644
--- a/source/blender/depsgraph/intern/nodes/deg_node.h
+++ b/source/blender/depsgraph/intern/nodes/deg_node.h
@@ -176,7 +176,7 @@ struct IDDepsNode : public DepsNode {
GHash *components;
/* Layers of this node with accumulated layers of it's output relations. */
- int layers;
+ unsigned int layers;
/* Additional flags needed for scene evaluation.
* TODO(sergey): Only needed for until really granular updates