From 41cf2d9042bfe96d8515ffd2f27a3e671464bc21 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 23 Apr 2018 14:34:56 +0200 Subject: Depsgraph: Cleanup, remove unused relation tag --- source/blender/depsgraph/intern/depsgraph.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'source/blender/depsgraph/intern') diff --git a/source/blender/depsgraph/intern/depsgraph.h b/source/blender/depsgraph/intern/depsgraph.h index ce56d67b6de..f742587e19f 100644 --- a/source/blender/depsgraph/intern/depsgraph.h +++ b/source/blender/depsgraph/intern/depsgraph.h @@ -59,13 +59,10 @@ struct OperationDepsNode; /* Settings/Tags on Relationship */ typedef enum eDepsRelation_Flag { - /* "touched" tag is used when filtering, to know which to collect */ - DEPSREL_FLAG_TEMP_TAG = (1 << 0), - /* "cyclic" link - when detecting cycles, this relationship was the one - * which triggers a cyclic relationship to exist in the graph + * which triggers a cyclic relationship to exist in the graph. */ - DEPSREL_FLAG_CYCLIC = (1 << 1), + DEPSREL_FLAG_CYCLIC = (1 << 0), } eDepsRelation_Flag; /* B depends on A (A -> B) */ -- cgit v1.2.3